diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2011-08-04 23:05:35 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-08-04 23:05:35 -0400 |
commit | 0bfd4639ab77a3126f9d1598fabd2209173ca1e9 (patch) | |
tree | f2c14f0dbd05f61c26db1d6882880ba50f01cbe7 /phpBB | |
parent | 124b8a92ec5e0ce6acf01b52a9825f48944bd2a1 (diff) | |
parent | 66867b5ac0de96a8072d81108d70c08cea77180e (diff) | |
download | forums-0bfd4639ab77a3126f9d1598fabd2209173ca1e9.tar forums-0bfd4639ab77a3126f9d1598fabd2209173ca1e9.tar.gz forums-0bfd4639ab77a3126f9d1598fabd2209173ca1e9.tar.bz2 forums-0bfd4639ab77a3126f9d1598fabd2209173ca1e9.tar.xz forums-0bfd4639ab77a3126f9d1598fabd2209173ca1e9.zip |
Merge branch 'develop-olympus' into develop
* develop-olympus:
[ticket/10303] Removed HTTP_VERSION code path from send_status_line().
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/functions.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index fb7aafe636..73f763c9f6 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2479,12 +2479,6 @@ function send_status_line($code, $message) { $version = $_SERVER['SERVER_PROTOCOL']; } - else if (!empty($_SERVER['HTTP_VERSION'])) - { - // I cannot remember where I got this from. - // This code path may never be reachable in reality. - $version = $_SERVER['HTTP_VERSION']; - } else { $version = 'HTTP/1.0'; |