]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 282914: Fix broken sanitycheck.cgi due to missing ")"
authorbugreport%peshkin.net <>
Mon, 21 Feb 2005 01:32:55 +0000 (01:32 +0000)
committerbugreport%peshkin.net <>
Mon, 21 Feb 2005 01:32:55 +0000 (01:32 +0000)
r,a=justdave

sanitycheck.cgi

index c803a2a0cec0422f28a5588cd09727d0d033f830..163f0f5cb75c142834f5abb7e2d85ae89b740a10 100755 (executable)
@@ -740,7 +740,7 @@ Status("Checking for unsent mail");
 SendSQL("SELECT bug_id " .
         "FROM bugs WHERE lastdiffed < delta_ts AND ".
         "delta_ts < date_sub(now(), " . $dbh->sql_interval('30 minute') .
-        " ORDER BY bug_id");
+        ") ORDER BY bug_id");
 
 while (@row = FetchSQLData()) {
     my ($id) = (@row);