diff options
author | bugreport%peshkin.net <> | 2002-11-10 02:09:25 +0000 |
---|---|---|
committer | bugreport%peshkin.net <> | 2002-11-10 02:09:25 +0000 |
commit | 413a75cafd2c8af9b520c483e85e8995c4ccca96 (patch) | |
tree | f0569112c4a989fc525288b102f5135e030dacbb /Bugzilla | |
parent | cc17e744a812dc5cc11b2b059605f332ffda599a (diff) | |
download | bugs-413a75cafd2c8af9b520c483e85e8995c4ccca96.tar bugs-413a75cafd2c8af9b520c483e85e8995c4ccca96.tar.gz bugs-413a75cafd2c8af9b520c483e85e8995c4ccca96.tar.bz2 bugs-413a75cafd2c8af9b520c483e85e8995c4ccca96.tar.xz bugs-413a75cafd2c8af9b520c483e85e8995c4ccca96.zip |
Bug 179242 Searching for comment contains string + email gives "Not unique table/alias: 'longdescs_' at globals.pl line 242"
r=jake
a=myk
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Search.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index cea9294ca..73d95c524 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -202,7 +202,7 @@ sub init { } if ($params->param("emaillongdesc$id")) { if (my $list = $self->ListIDsForEmail($type, $email)) { - my $table = "longdescs_"; + my $table = "longdescs_email_$id"; push(@supptables, "LEFT JOIN longdescs $table ON bugs.bug_id = $table.bug_id AND $table.who IN($list)"); push(@clist, "$table.who",'isnotnull'); } else { |