From 09035a1555ac79a74a3c40631701ae35dcd7f9fd Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Tue, 11 Jan 2000 08:26:21 +0000 Subject: Worked around bug in older versions of MySQL that caused a report of one bug matching a keyword when there really are zero. --- editkeywords.cgi | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'editkeywords.cgi') diff --git a/editkeywords.cgi b/editkeywords.cgi index 03525f725..dcb72ae2e 100755 --- a/editkeywords.cgi +++ b/editkeywords.cgi @@ -135,14 +135,22 @@ if ($action eq "") { }; SendSQL("SELECT keyworddefs.id, keyworddefs.name, keyworddefs.description, - COUNT(keywords.bug_id) + COUNT(keywords.bug_id), keywords.bug_id FROM keyworddefs LEFT JOIN keywords ON keyworddefs.id = keywords.keywordid GROUP BY keyworddefs.id ORDER BY keyworddefs.name"); while (MoreSQLData()) { - my ($id, $name, $description, $bugs) = FetchSQLData(); + my ($id, $name, $description, $bugs, $onebug) = FetchSQLData(); $description ||= "missing"; $bugs ||= 'none'; + if (!$onebug) { + # This is silly hackery for old versions of MySQL that seem to + # return a count() of 1 even if there are no matching. So, we + # ask for an actual bug number. If it can't find any bugs that + # match the keyword, then we set the count to be zero, ignoring + # what it had responded. + $bugs = 'none'; + } print qq{ $name -- cgit v1.2.3-24-g4f1b