[Rt-commit] r13293 - in rt/branches/3.6-RELEASE: .

alexmv at bestpractical.com alexmv at bestpractical.com
Fri Jun 13 15:51:32 EDT 2008


Author: alexmv
Date: Fri Jun 13 15:51:32 2008
New Revision: 13293

Modified:
   rt/branches/3.6-RELEASE/   (props changed)
   rt/branches/3.6-RELEASE/html/autohandler

Log:
 r33035 at kohr-ah:  chmrr | 2008-06-13 15:51:10 -0400
  * We want the strict definition of utf8, otherwise later regexes and the like can die


Modified: rt/branches/3.6-RELEASE/html/autohandler
==============================================================================
--- rt/branches/3.6-RELEASE/html/autohandler	(original)
+++ rt/branches/3.6-RELEASE/html/autohandler	Fri Jun 13 15:51:32 2008
@@ -72,13 +72,13 @@
     ( !$type )
         ? Encode::is_utf8($_)
         ? $_
-        : Encode::decode( utf8 => $_, Encode::FB_PERLQQ )
+        : Encode::decode( 'UTF-8' => $_, Encode::FB_PERLQQ )
         : ( $type eq 'ARRAY' )
         ? [
         map {
             ( ref($_) or Encode::is_utf8($_) )
                 ? $_
-                : Encode::decode( utf8 => $_, Encode::FB_PERLQQ )
+                : Encode::decode( 'UTF-8' => $_, Encode::FB_PERLQQ )
             } @$_
         ]
         : ( $type eq 'HASH' )
@@ -86,7 +86,7 @@
         map {
             ( ref($_) or Encode::is_utf8($_) )
                 ? $_
-                : Encode::decode( utf8 => $_, Encode::FB_PERLQQ )
+                : Encode::decode( 'UTF-8' => $_, Encode::FB_PERLQQ )
             } %$_
         }
         : $_


More information about the Rt-commit mailing list