Author: sparky
Date: Sat Mar 13 03:29:51 2010
New Revision: 11269

Modified:
   toys/rsget.pl/RSGet/HTTPServer.pm
Log:
- allow query components separated by &


Modified: toys/rsget.pl/RSGet/HTTPServer.pm
==============================================================================
--- toys/rsget.pl/RSGet/HTTPServer.pm   (original)
+++ toys/rsget.pl/RSGet/HTTPServer.pm   Sat Mar 13 03:29:51 2010
@@ -95,7 +95,7 @@
                }
        } elsif ( $file =~ s/\?(.*)// ) {
                my $get = $1;
-               %post = map { /^(.*?)=(.*)/; (uri_unescape( $1 ), uri_unescape( 
$2 )) } split /;+/, $get;
+               %post = map { /^(.*?)=(.*)/; (uri_unescape( $1 ), uri_unescape( 
$2 )) } split /[;&]+/, $get;
        }
 
        my $authorized = 1;
_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to