1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/11620] Update auth_provider for new interface

PHPBB3-11620
This commit is contained in:
asperous
2013-07-13 07:32:49 -07:00
committed by Andy Chase
parent 7dbd85ad02
commit 30f198c61a

View File

@@ -31,7 +31,7 @@ class phpbb_mock_auth_provider implements phpbb_auth_provider_interface
return array(); return array();
} }
function acp($new) function acp()
{ {
return array(); return array();
} }
@@ -45,4 +45,9 @@ class phpbb_mock_auth_provider implements phpbb_auth_provider_interface
{ {
return null; return null;
} }
public function get_acp_template($new_config)
{
return null;
}
} }