[Jifty-commit] r3206 - jifty/trunk/lib/Jifty/View/Declare

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Mon May 7 11:27:34 EDT 2007


Author: ruz
Date: Mon May  7 11:27:31 2007
New Revision: 3206

Modified:
   jifty/trunk/lib/Jifty/View/Declare/Handler.pm

Log:
* we shouldn't silence utf8 warnings

Modified: jifty/trunk/lib/Jifty/View/Declare/Handler.pm
==============================================================================
--- jifty/trunk/lib/Jifty/View/Declare/Handler.pm	(original)
+++ jifty/trunk/lib/Jifty/View/Declare/Handler.pm	Mon May  7 11:27:31 2007
@@ -66,10 +66,10 @@
 =cut
 
 sub show {
-    my $self          = shift;
+    my $self     = shift;
     my $template = shift;
 
-    no warnings qw/redefine utf8/;
+    no warnings qw/redefine/;
     local *Jifty::Web::out = sub {
         shift;    # Turn the method into a function
         goto &Template::Declare::Tags::outs_raw;


More information about the Jifty-commit mailing list