dougm       2002/10/21 13:21:35

  Modified:    .        Changes
               lib/Apache compat.pm
  Log:
  Submitted by: Walery Studennikov <[EMAIL PROTECTED]>
  Reviewed by:  dougm
  fix parse_args compat method to support non-ascii characters
  
  Revision  Changes    Path
  1.55      +3 -0      modperl-2.0/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Changes,v
  retrieving revision 1.54
  retrieving revision 1.55
  diff -u -r1.54 -r1.55
  --- Changes   21 Oct 2002 20:18:10 -0000      1.54
  +++ Changes   21 Oct 2002 20:21:33 -0000      1.55
  @@ -10,6 +10,9 @@
   
   =item 1.99_08-dev
   
  +fix parse_args compat method to support non-ascii characters
  +[Walery Studennikov <[EMAIL PROTECTED]>]
  +
   fix post_connection compat method to behave as it did in 1.x
   [Geoff Young <[EMAIL PROTECTED]>]
   
  
  
  
  1.70      +1 -1      modperl-2.0/lib/Apache/compat.pm
  
  Index: compat.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/Apache/compat.pm,v
  retrieving revision 1.69
  retrieving revision 1.70
  diff -u -r1.69 -r1.70
  --- compat.pm 21 Oct 2002 20:18:10 -0000      1.69
  +++ compat.pm 21 Oct 2002 20:21:34 -0000      1.70
  @@ -218,7 +218,7 @@
       return () unless defined $string and $string;
   
       return map {
  -        s/%([0-9a-fA-F]{2})/pack("c",hex($1))/ge;
  +        s/%([0-9a-fA-F]{2})/pack("C",hex($1))/ge;
           $_;
       } split /[=&;]/, $string, -1;
   }
  
  
  


Reply via email to