[Jifty-commit] r4056 - Template-Declare/lib/Template/Declare

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Fri Sep 7 07:17:00 EDT 2007


Author: ruz
Date: Fri Sep  7 07:17:00 2007
New Revision: 4056

Modified:
   Template-Declare/lib/Template/Declare/Tags.pm

Log:
* there is no reason to create new buffer if we just append

Modified: Template-Declare/lib/Template/Declare/Tags.pm
==============================================================================
--- Template-Declare/lib/Template/Declare/Tags.pm	(original)
+++ Template-Declare/lib/Template/Declare/Tags.pm	Fri Sep  7 07:17:00 2007
@@ -760,11 +760,8 @@
     }
 
 
-    Template::Declare->new_buffer_frame;
     &$callable($self, @$args);
-    my $content = Template::Declare->buffer->data;
-    Template::Declare->end_buffer_frame;
-    Template::Declare->buffer->append($content);
+    return;
 }
 
 sub _postprocess {


More information about the Jifty-commit mailing list