diff options
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/sendunsentbugmail.pl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/sendunsentbugmail.pl b/contrib/sendunsentbugmail.pl index 35b6a4941..9184e0be2 100644 --- a/contrib/sendunsentbugmail.pl +++ b/contrib/sendunsentbugmail.pl @@ -30,8 +30,10 @@ use Bugzilla::Constants; use Bugzilla::BugMail; my $dbh = Bugzilla->dbh; -SendSQL("SELECT bug_id FROM bugs WHERE lastdiffed < delta_ts AND - delta_ts < NOW() - " . $dbh->sql_interval('30 minute') . +SendSQL("SELECT bug_id FROM bugs + WHERE lastdiffed IS NULL + OR lastdiffed < delta_ts AND delta_ts < NOW() - " + . $dbh->sql_interval('30 minute') . " ORDER BY bug_id"); my @list; while (MoreSQLData()) { |