Another patch for the same function: parse_args.
This time it converts '+'-s to spaces from the requrst.

Whithout this patch all spaces in a query parameters become plus signs.
                                 
-- 

Regards, Walery Studennikov,
WebNames.Ru technical support
--- compat.pm.orig      Thu Oct 24 11:56:42 2002
+++ compat.pm   Thu Oct 10 10:36:16 2002
@@ -213,6 +213,7 @@
     return () unless defined $string and $string;
 
     return map {
+       tr/+/ /;
         s/%([0-9a-fA-F]{2})/pack("C",hex($1))/ge;
         $_;
     } split /[=&;]/, $string, -1;

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to