diff options
-rw-r--r-- | extensions/BMO/lib/Reports/ReleaseTracking.pm | 4 |
1 files 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} . '%'; |