Fix for bug 95546. MySQL versions before 3.23 don't support INNER JOINs

Patch by Myk Melez <myk@mozilla.org>
r= jake@acutex.net


git-svn-id: svn://10.0.0.236/trunk@101219 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jake%acutex.net
2001-08-16 15:28:33 +00:00
parent 0e32b73899
commit 29c08acbf0

View File

@@ -242,8 +242,8 @@ sub GenerateSQL {
push(@supptables, "longdescs $table");
push(@wherepart, "$table.bug_id = bugs.bug_id");
my $ptable = "longdescnames_";
push(@supptables,
"INNER JOIN profiles $ptable ON $table.who = $ptable.userid");
push(@supptables, "profiles $ptable");
push(@wherepart, "$table.who = $ptable.userid");
push(@clist, "$ptable.login_name", $type, $email);
}
if (@clist) {