From: bugreport%peshkin.net <> Date: Mon, 21 Feb 2005 01:32:55 +0000 (+0000) Subject: Bug 282914: Fix broken sanitycheck.cgi due to missing ")" X-Git-Tag: bugzilla-2.19.3~266 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f526db6ad99edefb87aa7f9212438aac7cabea52;p=thirdparty%2Fbugzilla.git Bug 282914: Fix broken sanitycheck.cgi due to missing ")" r,a=justdave --- diff --git a/sanitycheck.cgi b/sanitycheck.cgi index c803a2a0ce..163f0f5cb7 100755 --- a/sanitycheck.cgi +++ b/sanitycheck.cgi @@ -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);