From: Fabien Potencier Date: Tue, 12 Apr 2011 14:04:26 +0000 (+0200) Subject: removed empty if X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=d96dbb442f7c007a1a683fcf9ab0b90f20dd27f3;p=konrad%2Ftwig.git removed empty if --- diff --git a/lib/Twig/Error.php b/lib/Twig/Error.php index 88af6f4..4064652 100644 --- a/lib/Twig/Error.php +++ b/lib/Twig/Error.php @@ -169,8 +169,7 @@ class Twig_Error extends Exception return array($templateline, $template); } - if (T_WHITESPACE === $token[0]) { - } elseif (T_COMMENT === $token[0] && null === $template && preg_match('#/\* +(.+) +\*/#', $token[1], $match)) { + if (T_COMMENT === $token[0] && null === $template && preg_match('#/\* +(.+) +\*/#', $token[1], $match)) { $template = $match[1]; } elseif (T_COMMENT === $token[0] && preg_match('#^//\s*line (\d+)\s*$#', $token[1], $match)) { $templateline = $match[1];