diff options
Diffstat (limited to 'phpBB/profile.php')
-rw-r--r-- | phpBB/profile.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/profile.php b/phpBB/profile.php index 5443c5121d..20e33ce027 100644 --- a/phpBB/profile.php +++ b/phpBB/profile.php @@ -32,11 +32,11 @@ $auth->acl($user->data); // End session management // Set default email variables -$script_name = preg_replace('/^\/?(.*?)\/?$/', '\1', trim($board_config['script_path'])); +$script_name = preg_replace('/^\/?(.*?)\/?$/', '\1', trim($config['script_path'])); $script_name = ( $script_name != '' ) ? $script_name . '/profile.'.$phpEx : 'profile.'.$phpEx; -$server_name = trim($board_config['server_name']); -$server_protocol = ( $board_config['cookie_secure'] ) ? 'https://' : 'http://'; -$server_port = ( $board_config['server_port'] <> 80 ) ? ':' . trim($board_config['server_port']) . '/' : '/'; +$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; |