From 76965a12c5f49e9a6bf99ea0f2d88ba0852bab3d Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Sat, 9 Oct 1999 06:45:42 +0000 Subject: Fixed bug 15890 -- was producing garbled SQL if doing a query that required the bugs_activity table. --- buglist.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buglist.cgi b/buglist.cgi index 43cdea377..f712f0b3e 100755 --- a/buglist.cgi +++ b/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) { -- cgit v1.2.3-24-g4f1b