diff options
-rw-r--r-- | VERSION | 2 | ||||
-rwxr-xr-x | urpmi-proxy.cgi | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1 +1 @@ -0.3.1 +0.3.2 diff --git a/urpmi-proxy.cgi b/urpmi-proxy.cgi index 78b4865..f439100 100755 --- a/urpmi-proxy.cgi +++ b/urpmi-proxy.cgi @@ -52,7 +52,7 @@ my $file = $ENV{PATH_INFO}; return_error(500, 'Server error') if !$file; # split up request -return_error(500, 'Server error') if $file !~ m!^(.+)/([^/]*)$!; +return_error(500, 'Server error') if $file !~ m!^(.*)/([^/]*)$!; my $dest_path = $1; my $filename = $2; my $file_type = ""; |