Commit 413a75ca authored by bugreport%peshkin.net's avatar bugreport%peshkin.net

Bug 179242 Searching for comment contains string + email gives "Not unique…

Bug 179242 Searching for comment contains string + email gives "Not unique table/alias: 'longdescs_' at globals.pl line 242" r=jake a=myk
parent cc17e744
......@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment