]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Apparently, you're supposed to put "#foo" stuff in a URL after all the
authorterry%mozilla.org <>
Sat, 29 Jan 2000 00:18:10 +0000 (00:18 +0000)
committerterry%mozilla.org <>
Sat, 29 Jan 2000 00:18:10 +0000 (00:18 +0000)
"?" and "&" stuff.  IE doesn't work if you don't.

buglist.cgi

index 902d09f12285e8251f7729632760eaf3a07caed2..9466e50f28bc9f072c85a252d2dcf6e312e9b6fc 100755 (executable)
@@ -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
 
-<A HREF="$url">Adding field to query page...</A>
+Adding field to query page...
+<P>
+<A HREF="$url">Click here if page doesn't redisplay automatically.</A>
 };
     exit();
 }