mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
Couple of var names switched around in email URI
git-svn-id: file:///svn/phpbb/trunk@2191 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -39,7 +39,7 @@ $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_url = $server_protocol . $script_name . $server_name . $server_port;
|
||||
$server_url = $server_protocol . $server_name . $server_port . $script_name;
|
||||
|
||||
if( isset($HTTP_GET_VARS[POST_GROUPS_URL]) || isset($HTTP_POST_VARS[POST_GROUPS_URL]) )
|
||||
{
|
||||
|
@@ -44,7 +44,7 @@ $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_url = $server_protocol . $script_name . $server_name . $server_port;
|
||||
$server_url = $server_protocol . $server_name . $server_port . $script_name;
|
||||
|
||||
// -----------------------
|
||||
// Page specific functions
|
||||
|
Reference in New Issue
Block a user