aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2008-10-17 14:56:19 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2008-10-17 14:56:19 +0000
commit1b10cb9c37201560686fc4f1c54d845a9183ba21 (patch)
tree538624e1254fc8c0cceeda1d93017639a406e042
parentd0e630157c0ae40bb5a9aefd012f9e010a3cf681 (diff)
downloadforums-1b10cb9c37201560686fc4f1c54d845a9183ba21.tar
forums-1b10cb9c37201560686fc4f1c54d845a9183ba21.tar.gz
forums-1b10cb9c37201560686fc4f1c54d845a9183ba21.tar.bz2
forums-1b10cb9c37201560686fc4f1c54d845a9183ba21.tar.xz
forums-1b10cb9c37201560686fc4f1c54d845a9183ba21.zip
gah@trunk
git-svn-id: file:///svn/phpbb/trunk@9027 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/install/install_install.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php
index 61491d7b2b..1881c9042f 100644
--- a/phpBB/install/install_install.php
+++ b/phpBB/install/install_install.php
@@ -1140,7 +1140,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)