From: myk%mozilla.org <> Date: Thu, 28 Aug 2003 05:12:26 +0000 (+0000) Subject: Fix for bug 217485: displays query in the "please wait" server push page if the ... X-Git-Tag: bugzilla-2.17.5~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e777873a2774473b4c95aeb2a48481ae52c0677;p=thirdparty%2Fbugzilla.git Fix for bug 217485: displays query in the "please wait" server push page if the "debug" parameter is set in the URL. r=justdave a=justdave --- diff --git a/buglist.cgi b/buglist.cgi index f2f5ca6108..4beb57a099 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -626,6 +626,11 @@ $query .= " ORDER BY $db_order " if ($order); # Query Execution ################################################################################ +if ($::FORM{'debug'}) { + $vars->{'debug'} = 1; + $vars->{'query'} = $query; +} + # Time to use server push to display an interim message to the user until # the query completes and we can display the bug list. if ($serverpush) { @@ -763,11 +768,6 @@ if (scalar(@bugowners) > 1 && UserInGroup('editbugs')) { $vars->{'bugowners'} = $bugowners; } -if ($::FORM{'debug'}) { - $vars->{'debug'} = 1; - $vars->{'query'} = $query; -} - # Whether or not to split the column titles across two rows to make # the list more compact. $vars->{'splitheader'} = $::COOKIE{'SPLITHEADER'} ? 1 : 0;