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

[feature/oauth] Fix errors in OAuth

PHPBB3-11673
This commit is contained in:
Joseph Warner
2013-07-23 21:16:19 -04:00
parent c166801fe3
commit fe9c97cfb4
4 changed files with 23 additions and 3 deletions

View File

@@ -50,6 +50,6 @@ abstract class phpbb_auth_provider_oauth_service_base implements phpbb_auth_prov
*/
public function set_external_service_provider(\OAuth\Common\Service\ServiceInterface $service_provider)
{
$this->service_provider = $service;
$this->service_provider = $service_provider;
}
}