diff options
author | Marc Alexander <admin@m-a-styles.de> | 2016-06-08 20:47:14 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-06-08 20:47:14 +0200 |
commit | cf2b96def75e37697634ce38be85406b19d2dc50 (patch) | |
tree | 55bf3da7c7491e920cb20d50c767408bfe69f094 | |
parent | 9d88238f89a11e0de36e1943543368b092f2aba0 (diff) | |
parent | ff8b5058e086f56a1c8099131f93a8c0fc5114e7 (diff) | |
download | forums-cf2b96def75e37697634ce38be85406b19d2dc50.tar forums-cf2b96def75e37697634ce38be85406b19d2dc50.tar.gz forums-cf2b96def75e37697634ce38be85406b19d2dc50.tar.bz2 forums-cf2b96def75e37697634ce38be85406b19d2dc50.tar.xz forums-cf2b96def75e37697634ce38be85406b19d2dc50.zip |
Merge pull request #4346 from lavigor/ticket/14661
[ticket/14661] Fix a typo in twig.php
-rw-r--r-- | phpBB/phpbb/template/twig/twig.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/template/twig/twig.php b/phpBB/phpbb/template/twig/twig.php index bd754d9bbd..d1bbb2b55a 100644 --- a/phpBB/phpbb/template/twig/twig.php +++ b/phpBB/phpbb/template/twig/twig.php @@ -350,7 +350,7 @@ class twig extends \phpbb\template\base return $this->twig->render($this->get_filename_from_handle($handle), $this->get_template_vars()); } - $this->assign_var($template_var, $this->twig->render($this->get_filename_from_handle($handle, $this->get_template_vars()))); + $this->assign_var($template_var, $this->twig->render($this->get_filename_from_handle($handle), $this->get_template_vars())); return $this; } |