From 22765f12e49513b1d9a1250c7815d959cddf7ddd Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" Date: Fri, 8 Oct 1999 23:45:42 +0000 Subject: [PATCH] Fixed bug 15890 -- was producing garbled SQL if doing a query that required the bugs_activity table. git-svn-id: svn://10.0.0.236/trunk@50280 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/buglist.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/webtools/bugzilla/buglist.cgi b/mozilla/webtools/bugzilla/buglist.cgi index 43cdea377e3..f712f0b3eed 100755 --- a/mozilla/webtools/bugzilla/buglist.cgi +++ b/mozilla/webtools/bugzilla/buglist.cgi @@ -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) {