aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/auth/provider/oauth/oauth.php
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-08-14 16:58:46 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-08-14 16:59:01 -0400
commit823b7e2b84b0c1cfda001c509876f1aef1a17b35 (patch)
treed5bf0141d3ac7b237f2643474559ab1371b32dbb /phpBB/phpbb/auth/provider/oauth/oauth.php
parentabebe83edb79b9f3879f8d257eefff01246ba172 (diff)
downloadforums-823b7e2b84b0c1cfda001c509876f1aef1a17b35.tar
forums-823b7e2b84b0c1cfda001c509876f1aef1a17b35.tar.gz
forums-823b7e2b84b0c1cfda001c509876f1aef1a17b35.tar.bz2
forums-823b7e2b84b0c1cfda001c509876f1aef1a17b35.tar.xz
forums-823b7e2b84b0c1cfda001c509876f1aef1a17b35.zip
[feature/oauth] Fix small error in method call
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb/auth/provider/oauth/oauth.php')
-rw-r--r--phpBB/phpbb/auth/provider/oauth/oauth.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/auth/provider/oauth/oauth.php b/phpBB/phpbb/auth/provider/oauth/oauth.php
index bb8b72ac06..6d42b06f6a 100644
--- a/phpBB/phpbb/auth/provider/oauth/oauth.php
+++ b/phpBB/phpbb/auth/provider/oauth/oauth.php
@@ -391,7 +391,7 @@ class phpbb_auth_provider_oauth extends phpbb_auth_provider_base
// We must have an oauth_service listed, check for it two ways
if (!array_key_exists('oauth_service', $link_data) || !$link_data['oauth_service'])
{
- $link_data['oauth_service'] = $this->request->variable('oauth_service', false);
+ $link_data['oauth_service'] = $this->request->variable('oauth_service', '');
if (!$link_data['oauth_service'])
{