diff options
author | terry%mozilla.org <> | 2000-01-29 01:18:10 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-01-29 01:18:10 +0100 |
commit | 2ecbc5b2d6b371b3a66bc79db918bc9fb2ce72f1 (patch) | |
tree | 791d7930947670879b5701ebd331c0cfccfb45bf /buglist.cgi | |
parent | e58c4504311423656889069ef7570bcf8452042a (diff) | |
download | bugzilla-2ecbc5b2d6b371b3a66bc79db918bc9fb2ce72f1.tar.gz bugzilla-2ecbc5b2d6b371b3a66bc79db918bc9fb2ce72f1.tar.xz |
Apparently, you're supposed to put "#foo" stuff in a URL after all the
"?" and "&" stuff. IE doesn't work if you don't.
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/buglist.cgi b/buglist.cgi index 902d09f12..9466e50f2 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 -<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(); } |