[Jifty-commit] r614 - jifty/trunk/lib/Jifty

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Tue Feb 21 22:42:41 EST 2006


Author: jesse
Date: Tue Feb 21 22:42:39 2006
New Revision: 614

Modified:
   /   (props changed)
   jifty/trunk/META.yml
   jifty/trunk/lib/Jifty/Record.pm

Log:
 r24497 at truegrounds:  jesse | 2006-02-21 22:41:00 -0500
 * Backed out audrey's utf8 upgrade patch


Modified: jifty/trunk/META.yml
==============================================================================
--- jifty/trunk/META.yml	(original)
+++ jifty/trunk/META.yml	Tue Feb 21 22:42:39 2006
@@ -1,5 +1,5 @@
 distribution_type: module
-generated_by: Module::Install version 0.560
+generated_by: Module::Install version 0.520
 license: unknown
 name: Jifty
 no_index:

Modified: jifty/trunk/lib/Jifty/Record.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Record.pm	(original)
+++ jifty/trunk/lib/Jifty/Record.pm	Tue Feb 21 22:42:39 2006
@@ -217,9 +217,12 @@
     unless ($self->check_read_rights(@_)) {
         return (undef);
     }
-    my $value = $self->SUPER::_value(@_);
-    utf8::upgrade($value) if defined $value;
-    $value;
+    return   Encode::decode_utf8($self->SUPER::_value(@_));
+#   This is the "Right' way to do things according to audrey, but it breaks
+#    
+#    my $value = $self->SUPER::_value(@_);
+#    utf8::upgrade($value) if defined $value;
+#    $value;
 }
 
 


More information about the Jifty-commit mailing list