1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/11360] Change second parameter in page_header function

PHPBB3-11360
This commit is contained in:
geetakshi
2014-03-19 19:55:55 +05:30
parent 1af7697143
commit 18bed2ea47
10 changed files with 17 additions and 17 deletions

View File

@@ -79,7 +79,7 @@ class helper
*/
public function render($template_file, $page_title = '', $status_code = 200)
{
page_header($page_title);
page_header($page_title, true);
$this->template->set_filenames(array(
'body' => $template_file,

View File

@@ -49,7 +49,7 @@ class kernel_exception_subscriber implements EventSubscriberInterface
*/
public function on_kernel_exception(GetResponseForExceptionEvent $event)
{
page_header($this->user->lang('INFORMATION'));
page_header($this->user->lang('INFORMATION'), true);
$exception = $event->getException();