aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/ucp.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-01-08 17:04:55 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-01-08 17:04:55 +0000
commit4d75e2fc09b6569d6970bc4ff294db791d276348 (patch)
tree5f66f49db11ee326e17f8460c82f26b672e384f4 /phpBB/ucp.php
parentd54d938117c2daa9d9bb5e8cb69f148574bc83e2 (diff)
downloadforums-4d75e2fc09b6569d6970bc4ff294db791d276348.tar
forums-4d75e2fc09b6569d6970bc4ff294db791d276348.tar.gz
forums-4d75e2fc09b6569d6970bc4ff294db791d276348.tar.bz2
forums-4d75e2fc09b6569d6970bc4ff294db791d276348.tar.xz
forums-4d75e2fc09b6569d6970bc4ff294db791d276348.zip
Remove server string stuff since it's now handled by redirect
git-svn-id: file:///svn/phpbb/trunk@3279 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/ucp.php')
-rwxr-xr-xphpBB/ucp.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/phpBB/ucp.php b/phpBB/ucp.php
index 0c9e055957..9013fb842c 100755
--- a/phpBB/ucp.php
+++ b/phpBB/ucp.php
@@ -71,15 +71,6 @@ $user->setup();
$auth->acl($user->data);
// End session management
-// Set default email variables
-$script_name = preg_replace('/^\/?(.*?)\/?$/', '\1', trim($config['script_path']));
-$script_name = ( $script_name != '' ) ? $script_name . '/ucp.'.$phpEx : 'ucp.'.$phpEx;
-$server_name = trim($config['server_name']);
-$server_protocol = ( $config['cookie_secure'] ) ? 'https://' : 'http://';
-$server_port = ( $config['server_port'] <> 80 ) ? ':' . trim($config['server_port']) . '/' : '/';
-
-$server_url = $server_protocol . $server_name . $server_port . $script_name;
-
// -----------------------
// Page specific functions
//