mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 22:08:54 +00:00
The message shouldn't be displayed at all(now), unless there's foul play invlolved.
#10968 git-svn-id: file:///svn/phpbb/trunk@7592 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
88f476be53
commit
ec4b04ae82
2 changed files with 2 additions and 2 deletions
|
@ -228,7 +228,7 @@ $lang = array_merge($lang, array(
|
|||
'LINK_REMOTE_SIZE_EXPLAIN' => 'Specify the width and height of the avatar, leave blank to attempt automatic verification.',
|
||||
'LOGIN_EXPLAIN_UCP' => 'Please login in order to access the User Control Panel.',
|
||||
'LOGIN_REDIRECT' => 'You have been successfully logged in.',
|
||||
'LOGOUT_FAILED' => 'You were not logged out, as the request did not match your session.',
|
||||
'LOGOUT_FAILED' => 'You were not logged out, as the request did not match your session. Please contact the board administrator if you continue to experience problems.',
|
||||
'LOGOUT_REDIRECT' => 'You have been successfully logged out.',
|
||||
|
||||
'MARK_IMPORTANT' => 'Mark/Unmark as important',
|
||||
|
|
|
@ -90,7 +90,7 @@ switch ($mode)
|
|||
}
|
||||
else
|
||||
{
|
||||
$message = $user->lang['LOGOUT_FAILED'];
|
||||
$message = ($user->data['user_id'] == ANONYMOUS) ? $user->lang['LOGOUT_REDIRECT'] : $user->lang['LOGOUT_FAILED'];
|
||||
}
|
||||
meta_refresh(3, append_sid("{$phpbb_root_path}index.$phpEx"));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue