summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorbugreport%peshkin.net <>2002-11-10 03:09:25 +0100
committerbugreport%peshkin.net <>2002-11-10 03:09:25 +0100
commit413a75cafd2c8af9b520c483e85e8995c4ccca96 (patch)
treef0569112c4a989fc525288b102f5135e030dacbb /Bugzilla
parentcc17e744a812dc5cc11b2b059605f332ffda599a (diff)
downloadbugzilla-413a75cafd2c8af9b520c483e85e8995c4ccca96.tar.gz
bugzilla-413a75cafd2c8af9b520c483e85e8995c4ccca96.tar.xz
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.pm2
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 {