Make "rescanall" only check bugs which have changed in the last two days.

git-svn-id: svn://10.0.0.236/trunk@50345 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
terry%mozilla.org
1999-10-11 18:23:21 +00:00
parent d9793670d5
commit c49588441a

View File

@@ -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];