diff options
author | asperous <asperous2@gmail.com> | 2013-07-13 07:32:49 -0700 |
---|---|---|
committer | Andy Chase <asperous2@gmail.com> | 2013-07-22 11:07:46 -0700 |
commit | 30f198c61a56deb14223a60a8ebf370cc90d9f4b (patch) | |
tree | 01f8cc3e0597e37614ea2bb95f0a9b08667de740 | |
parent | 7dbd85ad02b031fc2392adfd27c66c3725ef117b (diff) | |
download | forums-30f198c61a56deb14223a60a8ebf370cc90d9f4b.tar forums-30f198c61a56deb14223a60a8ebf370cc90d9f4b.tar.gz forums-30f198c61a56deb14223a60a8ebf370cc90d9f4b.tar.bz2 forums-30f198c61a56deb14223a60a8ebf370cc90d9f4b.tar.xz forums-30f198c61a56deb14223a60a8ebf370cc90d9f4b.zip |
[ticket/11620] Update auth_provider for new interface
PHPBB3-11620
-rw-r--r-- | tests/mock/auth_provider.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/mock/auth_provider.php b/tests/mock/auth_provider.php index 9674c573e3..e0a2abd2d5 100644 --- a/tests/mock/auth_provider.php +++ b/tests/mock/auth_provider.php @@ -31,7 +31,7 @@ class phpbb_mock_auth_provider implements phpbb_auth_provider_interface return array(); } - function acp($new) + function acp() { return array(); } @@ -45,4 +45,9 @@ class phpbb_mock_auth_provider implements phpbb_auth_provider_interface { return null; } + + public function get_acp_template($new_config) + { + return null; + } } |