tweaked an error message
authorFabien Potencier <fabien.potencier@gmail.com>
Thu, 1 Sep 2011 06:06:05 +0000 (08:06 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Thu, 1 Sep 2011 06:06:05 +0000 (08:06 +0200)
lib/Twig/Parser.php

index d6310e0..9ff315a 100644 (file)
@@ -307,7 +307,7 @@ class Twig_Parser implements Twig_ParserInterface
             ||
             (!$node instanceof Twig_Node_Text && !$node instanceof Twig_Node_BlockReference && $node instanceof Twig_NodeOutputInterface)
         ) {
-            throw new Twig_Error_Syntax(sprintf('A template that extends another one cannot have a body (%s).', $node), $node->getLine(), $this->stream->getFilename());
+            throw new Twig_Error_Syntax('A template that extends another one cannot have a body.', $node->getLine(), $this->stream->getFilename());
         }
 
         if ($node instanceof Twig_NodeOutputInterface) {