Commit acd4e951 authored by jake%acutex.net's avatar jake%acutex.net

Fix for bug 71664 - Don't complain about a bad keyword cache for a bug that doesn't exist.

Patch by Matthew Tuck <matty@chariot.net.au> r= afranke@ags.uni-sb.de, jake@acutex.net
parent 9725e6fa
......@@ -336,8 +336,9 @@ if (exists $::FORM{'rebuildkeywordcache'}) {
}
SendSQL("SELECT keywords.bug_id, keyworddefs.name " .
"FROM keywords, keyworddefs " .
"FROM keywords, keyworddefs, bugs " .
"WHERE keyworddefs.id = keywords.keywordid " .
" AND keywords.bug_id = bugs.bug_id " .
"ORDER BY keywords.bug_id, keyworddefs.name");
my $lastb;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment