projects
/
web/konrad/twig.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
b1bfb14
)
simplified previous merge
author
Fabien Potencier
<fabien.potencier@gmail.com>
Mon, 29 Aug 2011 16:47:24 +0000 (18:47 +0200)
committer
Fabien Potencier
<fabien.potencier@gmail.com>
Mon, 29 Aug 2011 16:47:24 +0000 (18:47 +0200)
lib/Twig/Error.php
patch
|
blob
|
history
diff --git
a/lib/Twig/Error.php
b/lib/Twig/Error.php
index
ada7bf0
..
ed0836c
100644
(file)
--- a/
lib/Twig/Error.php
+++ b/
lib/Twig/Error.php
@@
-175,9
+175,7
@@
class Twig_Error extends Exception
$tokens = token_get_all(file_get_contents($r->getFilename()));
$templateline = -1;
$template = null;
- for ($j = 0, $tokensSize = count($tokens); $j < $tokensSize; $j++) {
- $token = $tokens[$j];
-
+ foreach ($tokens as $token) {
if (isset($token[2]) && $token[2] >= $line) {
return array($templateline, $template);
}