From: Fabien Potencier Date: Tue, 28 Aug 2012 15:05:50 +0000 (+0200) Subject: made a better test X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=92d8b25fee71e1d2f19f5d0c31838d6144a4bbcd;p=web%2Fkonrad%2Ftwig.git made a better test --- 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); }