aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlavigor <lavigor@users.noreply.github.com>2016-06-05 13:40:40 +0300
committerlavigor <lavigor@users.noreply.github.com>2016-06-05 13:40:40 +0300
commitff8b5058e086f56a1c8099131f93a8c0fc5114e7 (patch)
treed82e1643aad0be966e63a16537c48fcc8f6b6783
parentb63c61d099ff803de9ae7068a7cc77d105b94bd5 (diff)
downloadforums-ff8b5058e086f56a1c8099131f93a8c0fc5114e7.tar
forums-ff8b5058e086f56a1c8099131f93a8c0fc5114e7.tar.gz
forums-ff8b5058e086f56a1c8099131f93a8c0fc5114e7.tar.bz2
forums-ff8b5058e086f56a1c8099131f93a8c0fc5114e7.tar.xz
forums-ff8b5058e086f56a1c8099131f93a8c0fc5114e7.zip
[ticket/14661] Fix a typo in twig.php
PHPBB3-14661
-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;
}