]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Make "rescanall" only check bugs which have changed in the last two days.
authorterry%mozilla.org <>
Tue, 12 Oct 1999 01:23:21 +0000 (01:23 +0000)
committerterry%mozilla.org <>
Tue, 12 Oct 1999 01:23:21 +0000 (01:23 +0000)
processmail

index 7cb3c7d6e415b22fced6a9b2660f284ca9b47fb5..6abd157aca05a008ef33d4483b044fb02f333e44 100755 (executable)
@@ -369,7 +369,7 @@ if ($#ARGV == 1) {
 
 if ($ARGV[0] eq "rescanall") {
     print "<br> Collecting bug ids...\n";
-    SendSQL("select bug_id from bugs order by bug_id");
+    SendSQL("select bug_id from bugs where to_days(now()) - to_days(delta_ts) <= 2 order by bug_id");
     my @list;
     while (my @row = FetchSQLData()) {
         push @list, $row[0];