Commit 2ecbc5b2 authored by terry%mozilla.org's avatar terry%mozilla.org

Apparently, you're supposed to put "#foo" stuff in a URL after all the

"?" and "&" stuff. IE doesn't work if you don't.
parent e58c4504
...@@ -55,11 +55,13 @@ ConnectToDatabase(); ...@@ -55,11 +55,13 @@ ConnectToDatabase();
if (grep(/^cmd-/, keys(%::FORM))) { if (grep(/^cmd-/, keys(%::FORM))) {
my $url = "query.cgi#chart?$::buffer"; my $url = "query.cgi?$::buffer#chart";
print qq{Refresh: 0; URL=$url print qq{Refresh: 0; URL=$url
Content-type: text/html 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(); exit();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment