diff options
author | ivan <ivan> | 2004-02-25 04:56:42 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-02-25 04:56:42 +0000 |
commit | d3bfa909241e66cf4c658180836cb2eb2e695f53 (patch) | |
tree | a9042ff06560f80ab73c87b8e148a90a05d05e57 | |
parent | 06216d5be0c1e76a9136f5c53655a4f6b0f43915 (diff) |
query strings get passed through sometimes?
-rw-r--r-- | FS/FS/CGI.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/CGI.pm b/FS/FS/CGI.pm index 86d20f6cb..f3c146a9c 100644 --- a/FS/FS/CGI.pm +++ b/FS/FS/CGI.pm @@ -210,6 +210,7 @@ sub popurl { my($up)=@_; my $cgi = &FS::UID::cgi; my $url = new URI::URL ( $cgi->isa('Apache') ? $cgi->uri : $cgi->url ); + $url->query(''); my(@path)=$url->path_components; splice @path, 0-$up; $url->path_components(@path); |