aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-08-05 15:38:58 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-08-05 17:35:44 -0400
commit4683c37682541f73deca1f1476daf8c24f6962d6 (patch)
treea818c7c71dc32cfb75b4425136cf50cc9d6d5c8f /phpBB/ucp.php
parent[feature/oauth] Start general auth linking page (diff)
downloadphpbb-4683c37682541f73deca1f1476daf8c24f6962d6.tar.gz
phpbb-4683c37682541f73deca1f1476daf8c24f6962d6.tar.bz2
phpbb-4683c37682541f73deca1f1476daf8c24f6962d6.zip
[feature/oauth] Forgot to have login_link be "in login" in ucp
PHPBB3-11673
Diffstat (limited to 'phpBB/ucp.php')
-rw-r--r--phpBB/ucp.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/ucp.php b/phpBB/ucp.php
index d69d938038..f1f8f2a829 100644
--- a/phpBB/ucp.php
+++ b/phpBB/ucp.php
@@ -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);
}