From 4541fb3dd672619a9e8c1ef4283c75ad1f09e15a Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Mon, 22 Feb 2016 05:04:10 +0000 Subject: Bug 1249614 - Release Tracking Report missed bug --- extensions/BMO/lib/Reports/ReleaseTracking.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/BMO/lib/Reports/ReleaseTracking.pm b/extensions/BMO/lib/Reports/ReleaseTracking.pm index bce59264c..0d9a51583 100644 --- a/extensions/BMO/lib/Reports/ReleaseTracking.pm +++ b/extensions/BMO/lib/Reports/ReleaseTracking.pm @@ -369,8 +369,8 @@ sub report { push @where, "(a.bug_when >= ?)"; push @params, $q->{start_date} . ' 00:00:00'; - push @where, "(a.bug_when < ?)"; - push @params, $q->{end_date} . ' 00:00:00'; + push @where, "(a.bug_when <= ?)"; + push @params, $q->{end_date} . ' 23:59:59'; push @where, "(a.added LIKE ?)"; push @params, '%' . $q->{flag_name} . $q->{flag_status} . '%'; -- cgit v1.2.3-24-g4f1b