mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00: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:
parent
0ce9506ffd
commit
2226dbb45e
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue