From 71d39ab7d5bdf28f75b00eb5bf683011973c2c07 Mon Sep 17 00:00:00 2001 From: omniError Date: Sat, 9 Aug 2014 20:24:03 -0500 Subject: [PATCH] [ticket/12831] fix CS https://tracker.phpbb.com/browse/PHPBB3-12831 PHPBB3-12831 --- phpBB/includes/functions.php | 4 ++-- phpBB/includes/functions_acp.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index b6fcb7ef10..ced3b36cbe 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -5054,7 +5054,7 @@ function page_header($page_title = '', $display_online_list = false, $item_id = * session item, e.g. forum for * session_forum_id * @var int item_id Restrict online users to item id - * @var array http_headers HTTP headers that should be set by phpbb + * @var array http_headers HTTP headers that should be set by phpbb * * @since 3.1.0-b3 */ @@ -5063,7 +5063,7 @@ function page_header($page_title = '', $display_online_list = false, $item_id = foreach ($http_headers as $hname => $hval) { - header((string) $hname.': '.(string) $hval); + header((string) $hname . ': ' . (string) $hval); } return; diff --git a/phpBB/includes/functions_acp.php b/phpBB/includes/functions_acp.php index b40f14fa5c..6b2b0000d1 100644 --- a/phpBB/includes/functions_acp.php +++ b/phpBB/includes/functions_acp.php @@ -130,7 +130,7 @@ function adm_page_header($page_title) foreach ($http_headers as $hname => $hval) { - header((string) $hname.': '.(string) $hval); + header((string) $hname . ': ' . (string) $hval); } return;