diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-01 21:29:15 -0500 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-01 21:29:15 -0500 |
commit | 3b9cb7faa7390ce244a69841de3618f4273cf3e0 (patch) | |
tree | d2e7ce61f783fb60009939fc67b13c1d1418fae0 /phpBB/includes/template | |
parent | f90252395697aa4f1d0e606e4d92665b2293eb8d (diff) | |
download | forums-3b9cb7faa7390ce244a69841de3618f4273cf3e0.tar forums-3b9cb7faa7390ce244a69841de3618f4273cf3e0.tar.gz forums-3b9cb7faa7390ce244a69841de3618f4273cf3e0.tar.bz2 forums-3b9cb7faa7390ce244a69841de3618f4273cf3e0.tar.xz forums-3b9cb7faa7390ce244a69841de3618f4273cf3e0.zip |
[feature/twig] Fix call for previous change to var name case
PHPBB3-11598
Diffstat (limited to 'phpBB/includes/template')
-rw-r--r-- | phpBB/includes/template/twig/environment.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/template/twig/environment.php b/phpBB/includes/template/twig/environment.php index f1ce6da38b..73375444da 100644 --- a/phpBB/includes/template/twig/environment.php +++ b/phpBB/includes/template/twig/environment.php @@ -132,7 +132,7 @@ class phpbb_template_twig_environment extends Twig_Environment { if (strpos($name, '@') === false) { - foreach ($this->namespaceLookUpOrder as $namespace) + foreach ($this->getNamespaceLookUpOrder() as $namespace) { try { |