1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[feature/template-engine] Fixed reference usage.

Hopefully this is right, I have not checked it against the manual
(assuming the manual even covers these things).

PHPBB3-9726
This commit is contained in:
Oleg Pudeyev
2011-05-11 09:12:52 -04:00
parent 169c4377e9
commit 635460fa6d
3 changed files with 7 additions and 3 deletions

View File

@@ -50,7 +50,7 @@ class phpbb_template_renderer_eval implements phpbb_template_renderer
*/
public function render($context, $lang)
{
$_template = &$this->template;
$_template = $this->template;
$_tpldata = &$context->get_data_ref();
$_rootref = &$context->get_root_ref();
$_lang = &$lang;