diff options
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions.php | 9 | ||||
-rw-r--r-- | phpBB/includes/functions_acp.php | 9 |
2 files changed, 6 insertions, 12 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 2104bd515a..b6fcb7ef10 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -5054,19 +5054,16 @@ 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 */ $vars = array('page_title', 'display_online_list', 'item_id', 'item', 'http_headers'); extract($phpbb_dispatcher->trigger_event('core.page_header_after', compact($vars))); - if (is_array($http_headers)) + foreach ($http_headers as $hname => $hval) { - 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 8780f8e1eb..b40f14fa5c 100644 --- a/phpBB/includes/functions_acp.php +++ b/phpBB/includes/functions_acp.php @@ -121,19 +121,16 @@ function adm_page_header($page_title) * * @event core.adm_page_header_after * @var string page_title Page title - * @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-RC3 */ $vars = array('page_title', 'http_headers'); extract($phpbb_dispatcher->trigger_event('core.adm_page_header_after', compact($vars))); - if (is_array($http_headers)) + foreach ($http_headers as $hname => $hval) { - foreach ($http_headers as $hname => $hval) - { - header((string) $hname.': '.(string) $hval); - } + header((string) $hname.': '.(string) $hval); } return; |