mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-05 07:07:51 +02:00
minor redirect fixes (please review)
git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3564 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
e3138ed2c4
commit
4367a190c7
@ -30,7 +30,7 @@ if ( !defined('IN_PHPBB') )
|
||||
// Is send through board enabled? No, return to index
|
||||
if (!$board_config['board_email_form'])
|
||||
{
|
||||
redirect(append_sid("index.$phpEx"));
|
||||
redirect(append_sid("index.$phpEx", true));
|
||||
}
|
||||
|
||||
if ( !empty($HTTP_GET_VARS[POST_USERS_URL]) || !empty($HTTP_POST_VARS[POST_USERS_URL]) )
|
||||
|
@ -443,7 +443,7 @@ if (@file_exists(@phpbb_realpath('config.'.$phpEx)))
|
||||
// Is phpBB already installed? Yes? Redirect to the index
|
||||
if (defined("PHPBB_INSTALLED"))
|
||||
{
|
||||
redirect('index.'.$phpEx);
|
||||
redirect('../index.'.$phpEx);
|
||||
}
|
||||
|
||||
// Import language file, setup template ...
|
||||
|
@ -1067,7 +1067,7 @@ else if ( $save && $mark_list && $folder != 'savebox' && $folder != 'outbox' )
|
||||
message_die(GENERAL_ERROR, 'Could not save private messages', '', __LINE__, __FILE__, $saved_sql);
|
||||
}
|
||||
|
||||
redirect("privmsg.$phpEx?folder=savebox");
|
||||
redirect(append_sid("privmsg.$phpEx?folder=savebox", true));
|
||||
}
|
||||
}
|
||||
else if ( $submit || $refresh || $mode != '' )
|
||||
|
Loading…
x
Reference in New Issue
Block a user