From: Fabien Potencier Date: Wed, 27 Jul 2011 07:44:25 +0000 (+0200) Subject: fixed CS on template output X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=56e2ca75faf3455494d1d690d9388725f858d123;p=konrad%2Ftwig.git fixed CS on template output --- diff --git a/lib/Twig/Node/BlockReference.php b/lib/Twig/Node/BlockReference.php index 4df2ed8..d39a12c 100644 --- a/lib/Twig/Node/BlockReference.php +++ b/lib/Twig/Node/BlockReference.php @@ -38,9 +38,9 @@ class Twig_Node_BlockReference extends Twig_Node implements Twig_NodeOutputInter if ($this->hasNode('name')) { $compiler ->addDebugInfo($this) - ->raw("\$this->displayBlock(") + ->write("\$this->displayBlock(") ->subcompile($this->getNode('name')) - ->write(", \$context, \$blocks);\n") + ->raw(", \$context, \$blocks);\n") ; } else { $compiler