summaryrefslogtreecommitdiffstats
path: root/sanitycheck.cgi
diff options
context:
space:
mode:
authorbugreport%peshkin.net <>2005-02-21 02:32:55 +0100
committerbugreport%peshkin.net <>2005-02-21 02:32:55 +0100
commitf526db6ad99edefb87aa7f9212438aac7cabea52 (patch)
treea1ef8276c63aa42c88263ba06e1f0ffe998ade61 /sanitycheck.cgi
parentc7f7aa289892e6613135ea1727f688ee4b82a3ab (diff)
downloadbugzilla-f526db6ad99edefb87aa7f9212438aac7cabea52.tar.gz
bugzilla-f526db6ad99edefb87aa7f9212438aac7cabea52.tar.xz
Bug 282914: Fix broken sanitycheck.cgi due to missing ")"
r,a=justdave
Diffstat (limited to 'sanitycheck.cgi')
-rwxr-xr-xsanitycheck.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/sanitycheck.cgi b/sanitycheck.cgi
index c803a2a0c..163f0f5cb 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);