aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/auth/provider/apache.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/auth/provider/apache.php')
-rw-r--r--phpBB/includes/auth/provider/apache.php19
1 files changed, 2 insertions, 17 deletions
diff --git a/phpBB/includes/auth/provider/apache.php b/phpBB/includes/auth/provider/apache.php
index 5f6f2862b6..e0217725d6 100644
--- a/phpBB/includes/auth/provider/apache.php
+++ b/phpBB/includes/auth/provider/apache.php
@@ -20,7 +20,8 @@ if (!defined('IN_PHPBB'))
*
* @package auth
*/
-class phpbb_auth_provider_apache implements phpbb_auth_provider_interface
+class phpbb_auth_provider_apache extends phpbb_auth_provider_base
+ implements phpbb_auth_provider_interface
{
/**
* Apache Authentication Constructor
@@ -256,20 +257,4 @@ class phpbb_auth_provider_apache implements phpbb_auth_provider_interface
return false;
}
-
- /**
- * {@inheritdoc}
- */
- public function acp($new)
- {
- return;
- }
-
- /**
- * {@inheritdoc}
- */
- public function logout($data, $new_session)
- {
- return;
- }
}