We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d78003b commit 4541fb3Copy full SHA for 4541fb3
extensions/BMO/lib/Reports/ReleaseTracking.pm
@@ -369,8 +369,8 @@ sub report {
369
370
push @where, "(a.bug_when >= ?)";
371
push @params, $q->{start_date} . ' 00:00:00';
372
- push @where, "(a.bug_when < ?)";
373
- push @params, $q->{end_date} . ' 00:00:00';
+ push @where, "(a.bug_when <= ?)";
+ push @params, $q->{end_date} . ' 23:59:59';
374
375
push @where, "(a.added LIKE ?)";
376
push @params, '%' . $q->{flag_name} . $q->{flag_status} . '%';
0 commit comments