diff options
author | ivan <ivan> | 2004-02-25 05:00:12 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-02-25 05:00:12 +0000 |
commit | 874c1e97c0de93bdcafab6dd6ff9a9f5bd49d83b (patch) | |
tree | fb087bd80e700535e938b6f2a462539d0385e1eb | |
parent | d3bfa909241e66cf4c658180836cb2eb2e695f53 (diff) |
oops, not the right way to blank them
-rw-r--r-- | FS/FS/CGI.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/CGI.pm b/FS/FS/CGI.pm index f3c146a9c..ef06f0090 100644 --- a/FS/FS/CGI.pm +++ b/FS/FS/CGI.pm @@ -210,7 +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(''); + $url->query(undef); my(@path)=$url->path_components; splice @path, 0-$up; $url->path_components(@path); |