diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2008-10-17 14:55:33 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-10-17 14:55:33 +0000 |
commit | 1f84d45740c30e49e9576c539b0c7fa8a34e9b67 (patch) | |
tree | ae0d7dd36ee220d710ad36cbdf311ce5cc68fb9c | |
parent | b384952dee29d006a3827a97a45cd698e3ed9c89 (diff) | |
download | forums-1f84d45740c30e49e9576c539b0c7fa8a34e9b67.tar forums-1f84d45740c30e49e9576c539b0c7fa8a34e9b67.tar.gz forums-1f84d45740c30e49e9576c539b0c7fa8a34e9b67.tar.bz2 forums-1f84d45740c30e49e9576c539b0c7fa8a34e9b67.tar.xz forums-1f84d45740c30e49e9576c539b0c7fa8a34e9b67.zip |
gah
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9026 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/install/install_install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index 72de32f303..7f5339a6ea 100644 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -1118,7 +1118,7 @@ class install_install extends module // HTTP_HOST is having the correct browser url in most cases... $server_name = (!empty($_SERVER['HTTP_HOST'])) ? strtolower($_SERVER['HTTP_HOST']) : ((!empty($_SERVER['SERVER_NAME'])) ? $_SERVER['SERVER_NAME'] : getenv('SERVER_NAME')); - $referer = (!empty($_SERVER['HTTP_REFERRER'])) ? strtolower($_SERVER['HTTP_REFERRER']) : getenv('HTTP_REFERRER'); + $referer = (!empty($_SERVER['HTTP_REFERER'])) ? strtolower($_SERVER['HTTP_REFERER']) : getenv('HTTP_REFERER'); // HTTP HOST can carry a port number... if (strpos($server_name, ':') !== false) |