1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 12:03:21 +01:00

[feature/controller] Use assign_display() instead of return_display()

The latter was deemed unnecessary at the moment.

PHPBB3-10864
This commit is contained in:
David King 2012-11-13 10:42:20 -05:00
parent 6900456e90
commit 2e59450459

View File

@ -87,7 +87,7 @@ class phpbb_controller_helper
page_footer(true, false, false);
return new Response($this->template->return_display('body'), $status_code);
return new Response($this->template->assign_display('body'), $status_code);
}
/**