Bug 179242 Part 2 - Handle both conditions for the if block

r=bbaetz


git-svn-id: svn://10.0.0.236/trunk@133514 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jake%bugzilla.org
2002-11-09 23:37:07 +00:00
parent d134850835
commit f882285e40

View File

@@ -192,10 +192,10 @@ sub init {
push(@supptables, "LEFT JOIN longdescs $table ON bugs.bug_id = $table.bug_id AND $table.who IN($list)");
push(@clist, "$table.who",'isnotnull');
} else {
my $table = "longdescs_";
my $table = "longdescs_email_$id";
push(@supptables, "longdescs $table");
push(@wherepart, "$table.bug_id = bugs.bug_id");
my $ptable = "longdescnames_";
my $ptable = "longdescnames_email_$id";
push(@supptables, "profiles $ptable");
push(@wherepart, "$table.who = $ptable.userid");
push(@clist, "$ptable.login_name", $type, $email);