aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/template/twig/loader.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2015-05-16 13:39:45 +0200
committerJoas Schilling <nickvergessen@gmx.de>2015-05-16 13:39:45 +0200
commite52bc2d02283aab8fc0a588feec74ec8858c48f8 (patch)
tree7a78e12493e07884c97264dfd287015dce2cd073 /phpBB/phpbb/template/twig/loader.php
parent1c0c9c1bca26744bb87f10271c636ce3b72eb85f (diff)
parent62e13e945c475c416c4fb9deff8f234d3508a598 (diff)
downloadforums-e52bc2d02283aab8fc0a588feec74ec8858c48f8.tar
forums-e52bc2d02283aab8fc0a588feec74ec8858c48f8.tar.gz
forums-e52bc2d02283aab8fc0a588feec74ec8858c48f8.tar.bz2
forums-e52bc2d02283aab8fc0a588feec74ec8858c48f8.tar.xz
forums-e52bc2d02283aab8fc0a588feec74ec8858c48f8.zip
Merge pull request #3606 from Nicofuma/ticket/13838
[ticket/13838] Check braces for control structures
Diffstat (limited to 'phpBB/phpbb/template/twig/loader.php')
-rw-r--r--phpBB/phpbb/template/twig/loader.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/phpbb/template/twig/loader.php b/phpBB/phpbb/template/twig/loader.php
index 2f8ffaa776..139a413b70 100644
--- a/phpBB/phpbb/template/twig/loader.php
+++ b/phpBB/phpbb/template/twig/loader.php
@@ -97,7 +97,8 @@ class loader extends \Twig_Loader_Filesystem
// If this is in the cache we can skip the entire process below
// as it should have already been validated
- if (isset($this->cache[$name])) {
+ if (isset($this->cache[$name]))
+ {
return $this->cache[$name];
}