aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-07-23 21:04:29 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-07-23 21:04:29 -0400
commitb1938576f15a43c8bf2967ab38f4484a07cc0344 (patch)
treee77949a2696dce8ea488564f7ca3e31e05b0f74a /phpBB/includes/functions.php
parentc26b68cc54b19d91affae6f4dbab67a33939ca23 (diff)
downloadforums-b1938576f15a43c8bf2967ab38f4484a07cc0344.tar
forums-b1938576f15a43c8bf2967ab38f4484a07cc0344.tar.gz
forums-b1938576f15a43c8bf2967ab38f4484a07cc0344.tar.bz2
forums-b1938576f15a43c8bf2967ab38f4484a07cc0344.tar.xz
forums-b1938576f15a43c8bf2967ab38f4484a07cc0344.zip
[feature/oauth] Fix outstanding issues with OAuth
Includes a temporary change that allows me to test against google. This will be removed shortly. PHPBB3-11673
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index bbe3033fb5..b14f03f5a0 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -3226,7 +3226,7 @@ function login_box($redirect = '', $l_explain = '', $l_success = '', $admin = fa
trigger_error('NO_AUTH_ADMIN');
}
- if (isset($_POST['login']))
+ if ($request->is_set_post('login') || ($request->is_set('login') && $request->variable('login', '') == 'external'))
{
// Get credential
if ($admin)