From: terry%mozilla.org <> Date: Sat, 9 Oct 1999 06:45:42 +0000 (+0000) Subject: Fixed bug 15890 -- was producing garbled SQL if doing a query X-Git-Tag: bugzilla-2.8~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=76965a12c5f49e9a6bf99ea0f2d88ba0852bab3d;p=thirdparty%2Fbugzilla.git Fixed bug 15890 -- was producing garbled SQL if doing a query that required the bugs_activity table. --- diff --git a/buglist.cgi b/buglist.cgi index 43cdea377e..f712f0b3ee 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) {