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

[feature/oauth] Fix errors found in testing linking

PHPBB3-11673
This commit is contained in:
Joseph Warner
2013-08-14 16:01:59 -04:00
parent bb68338861
commit cd12786e58
2 changed files with 4 additions and 7 deletions

View File

@@ -58,7 +58,7 @@ class ucp_auth_link
// Tell the provider that the method is auth_link not login_link
$link_data['link_method'] = 'auth_link';
if ($request->variable('link', null, false, phpbb_request_interface::POST))
if ($request->variable('link', 0, false, phpbb_request_interface::POST))
{
$error[] = $auth_provider->link_account($link_data);
}