[feature/twig] Use twig->display rather than echo twig->render

PHPBB3-11598
This commit is contained in:
Nathan Guse 2013-06-24 11:19:54 -05:00
parent 3bd281fa27
commit 4881085f13

View file

@ -238,7 +238,7 @@ class phpbb_template_twig implements phpbb_template
try try
{ {
echo $this->twig->render($this->locator->get_filename_for_handle($handle), $this->get_template_vars()); $this->twig->display($this->locator->get_filename_for_handle($handle), $this->get_template_vars());
} }
catch (Twig_Error $e) catch (Twig_Error $e)
{ {