From df2f05d6e5bf2678212df0f78487bf328446a02b Mon Sep 17 00:00:00 2001 From: "jake%acutex.net" <> Date: Thu, 16 Aug 2001 22:28:33 +0000 Subject: Fix for bug 95546. MySQL versions before 3.23 don't support INNER JOINs Patch by Myk Melez r= jake@acutex.net --- buglist.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'buglist.cgi') diff --git a/buglist.cgi b/buglist.cgi index 8ca7d293e..0f6dbed41 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -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) { -- cgit v1.2.3-24-g4f1b