diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-01 21:22:50 -0500 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-01 21:22:50 -0500 |
commit | 3dc40ad8443671081adc6f975a155f6f30cf3159 (patch) | |
tree | 388ce92188b02d33db100c5ada1c6b0a6ab5e53a | |
parent | e0f5e23032ce080c163439c1089a7b4994276da6 (diff) | |
download | forums-3dc40ad8443671081adc6f975a155f6f30cf3159.tar forums-3dc40ad8443671081adc6f975a155f6f30cf3159.tar.gz forums-3dc40ad8443671081adc6f975a155f6f30cf3159.tar.bz2 forums-3dc40ad8443671081adc6f975a155f6f30cf3159.tar.xz forums-3dc40ad8443671081adc6f975a155f6f30cf3159.zip |
[feature/twig] Use correct case for variable name
PHPBB3-11598
-rw-r--r-- | phpBB/includes/template/twig/environment.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/template/twig/environment.php b/phpBB/includes/template/twig/environment.php index 34e6f09981..a71958998a 100644 --- a/phpBB/includes/template/twig/environment.php +++ b/phpBB/includes/template/twig/environment.php @@ -27,7 +27,7 @@ class phpbb_template_twig_environment extends Twig_Environment protected $phpbb_root_path; /** @var array **/ - protected $namespaceLookUpOrder = array('__main__'); + protected $namespace_look_up_order = array('__main__'); public function __construct($phpbb_config, $phpbb_extensions, $phpbb_root_path, Twig_LoaderInterface $loader = null, $options = array()) { @@ -106,7 +106,7 @@ class phpbb_template_twig_environment extends Twig_Environment */ public function getNamespaceLookUpOrder() { - return $this->namespaceLookUpOrder; + return $this->namespace_look_up_order; } /** @@ -117,7 +117,7 @@ class phpbb_template_twig_environment extends Twig_Environment */ public function setNamespaceLookUpOrder($namespace) { - $this->namespaceLookUpOrder = $namespace; + $this->namespace_look_up_order = $namespace; return $this; } |