mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[feature/oauth] Fix small error in method call
PHPBB3-11673
This commit is contained in:
parent
abebe83edb
commit
823b7e2b84
1 changed files with 1 additions and 1 deletions
|
@ -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'])
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue