aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-06-08 20:47:14 +0200
committerMarc Alexander <admin@m-a-styles.de>2016-06-08 20:47:14 +0200
commitcf2b96def75e37697634ce38be85406b19d2dc50 (patch)
tree55bf3da7c7491e920cb20d50c767408bfe69f094
parent9d88238f89a11e0de36e1943543368b092f2aba0 (diff)
parentff8b5058e086f56a1c8099131f93a8c0fc5114e7 (diff)
downloadforums-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.php2
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;
}