From: terry%mozilla.org <> Date: Sat, 29 Jan 2000 00:18:10 +0000 (+0000) Subject: Apparently, you're supposed to put "#foo" stuff in a URL after all the X-Git-Tag: bugzilla-2.12~408 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ecbc5b2d6b371b3a66bc79db918bc9fb2ce72f1;p=thirdparty%2Fbugzilla.git Apparently, you're supposed to put "#foo" stuff in a URL after all the "?" and "&" stuff. IE doesn't work if you don't. --- diff --git a/buglist.cgi b/buglist.cgi index 902d09f122..9466e50f28 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -55,11 +55,13 @@ ConnectToDatabase(); if (grep(/^cmd-/, keys(%::FORM))) { - my $url = "query.cgi#chart?$::buffer"; + my $url = "query.cgi?$::buffer#chart"; print qq{Refresh: 0; URL=$url Content-type: text/html -Adding field to query page... +Adding field to query page... +
+Click here if page doesn't redisplay automatically. }; exit(); }