diff options
author | terry%mozilla.org <> | 1999-10-09 08:45:42 +0200 |
---|---|---|
committer | terry%mozilla.org <> | 1999-10-09 08:45:42 +0200 |
commit | 76965a12c5f49e9a6bf99ea0f2d88ba0852bab3d (patch) | |
tree | 7afe62c06acc5ff89a961537731be153485f34d1 /buglist.cgi | |
parent | 52c5560052de7154999fedcfd5a5a9248a13fec3 (diff) | |
download | bugzilla-76965a12c5f49e9a6bf99ea0f2d88ba0852bab3d.tar.gz bugzilla-76965a12c5f49e9a6bf99ea0f2d88ba0852bab3d.tar.xz |
Fixed bug 15890 -- was producing garbled SQL if doing a query
that required the bugs_activity table.
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |