From 92d8b25fee71e1d2f19f5d0c31838d6144a4bbcd Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 28 Aug 2012 17:05:50 +0200 Subject: [PATCH] made a better test --- lib/Twig/Parser.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/Twig/Parser.php b/lib/Twig/Parser.php index 5264238..d73cfde 100644 --- a/lib/Twig/Parser.php +++ b/lib/Twig/Parser.php @@ -163,7 +163,7 @@ class Twig_Parser implements Twig_ParserInterface if (null === $subparser) { if (null !== $test) { $error = sprintf('Unexpected tag name "%s"', $token->getValue()); - if (is_array($test) && isset($test[0]) && is_object($test[0])) { + if (is_array($test) && isset($test[0]) && $test[0] instanceof Twig_TokenParserInterface) { $error .= sprintf(' (expecting closing tag for the "%s" tag defined near line %s)', $test[0]->getTag(), $lineno); } -- 1.7.2.5