]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fixed bug 15890 -- was producing garbled SQL if doing a query
authorterry%mozilla.org <>
Sat, 9 Oct 1999 06:45:42 +0000 (06:45 +0000)
committerterry%mozilla.org <>
Sat, 9 Oct 1999 06:45:42 +0000 (06:45 +0000)
that required the bugs_activity table.

buglist.cgi

index 43cdea377e3e83df39bc23f4c22f9b68f4919d00..f712f0b3eedc61e20495a065d24cbf53ce2d84bf 100755 (executable)
@@ -407,7 +407,7 @@ if (defined $ref) {
 if (defined $ref && 0 < @$ref) {
     # Do surgery on the query to tell it to patch in the bugs_activity
     # table.
-    $query =~ s/bugs,/bugs, bugs_activity,/;
+    $query =~ s/profiles assign,/profiles assign, bugs_activity,/;
     
     my @list;
     foreach my $f (@$ref) {