From d96dbb442f7c007a1a683fcf9ab0b90f20dd27f3 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 12 Apr 2011 16:04:26 +0200 Subject: [PATCH] removed empty if --- lib/Twig/Error.php | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) 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]; -- 1.7.2.5