1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[feature/oauth] Forgot to have login_link be "in login" in ucp

PHPBB3-11673
This commit is contained in:
Joseph Warner
2013-08-05 15:38:58 -04:00
parent baa3a750c4
commit 4683c37682
3 changed files with 37 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ require($phpbb_root_path . 'includes/functions_module.' . $phpEx);
$id = request_var('i', '');
$mode = request_var('mode', '');
if (in_array($mode, array('login', 'logout', 'confirm', 'sendpassword', 'activate')))
if (in_array($mode, array('login', 'login_link', 'logout', 'confirm', 'sendpassword', 'activate')))
{
define('IN_LOGIN', true);
}