aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
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/includes/functions.php
parent691f682fc2a69fed28bdca76f714d20be9277af6 (diff)
downloadforums-d721e94b888b657c8e36729db2c455812308cdc3.tar
forums-d721e94b888b657c8e36729db2c455812308cdc3.tar.gz
forums-d721e94b888b657c8e36729db2c455812308cdc3.tar.bz2
forums-d721e94b888b657c8e36729db2c455812308cdc3.tar.xz
forums-d721e94b888b657c8e36729db2c455812308cdc3.zip
[ticket/7782] Added spaces.
PHPBB3-7782
Diffstat (limited to 'phpBB/includes/functions.php')
-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);