[Rt-commit] r13291 - in rt/branches/3.8-TESTING: share/html

alexmv at bestpractical.com alexmv at bestpractical.com
Fri Jun 13 15:44:41 EDT 2008


Author: alexmv
Date: Fri Jun 13 15:44:39 2008
New Revision: 13291

Modified:
   rt/branches/3.8-TESTING/   (props changed)
   rt/branches/3.8-TESTING/share/html/autohandler

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


Modified: rt/branches/3.8-TESTING/share/html/autohandler
==============================================================================
--- rt/branches/3.8-TESTING/share/html/autohandler	(original)
+++ rt/branches/3.8-TESTING/share/html/autohandler	Fri Jun 13 15:44:39 2008
@@ -86,13 +86,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' )
@@ -100,7 +100,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