aboutsummaryrefslogtreecommitdiff
path: root/phpBB
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2010-05-17 02:01:13 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2010-05-17 02:01:13 -0400
commitd721e94b888b657c8e36729db2c455812308cdc3 (patch)
treecb20d91e44d046d6ebd17515fafb74bc4f0d92e8 /phpBB
parent[ticket/7782] Added phpdoc comment for send_status_line function. (diff)
downloadphpbb-d721e94b888b657c8e36729db2c455812308cdc3.tar.gz
phpbb-d721e94b888b657c8e36729db2c455812308cdc3.tar.bz2
phpbb-d721e94b888b657c8e36729db2c455812308cdc3.zip
[ticket/7782] Added spaces.
PHPBB3-7782
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 178bb3ff3f..862ab3b367 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -2600,7 +2600,7 @@ function meta_refresh($time, $url, $disable_cd_check = false)
*/
function send_status_line($code, $message)
{
- if (substr(strtolower(@php_sapi_name()),0,3) === 'cgi')
+ if (substr(strtolower(@php_sapi_name()), 0, 3) === 'cgi')
{
// in theory, we shouldn't need that due to php doing it. Reality offers a differing opinion, though
header("Status: $code $message", true, $code);