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.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/phpBB/includes/auth/provider_apache.php b/phpBB/includes/auth/provider_apache.php
index 2d26b85877..2ba76e26a9 100644
--- a/phpBB/includes/auth/provider_apache.php
+++ b/phpBB/includes/auth/provider_apache.php
@@ -237,7 +237,7 @@ class phpbb_auth_provider_apache implements phpbb_auth_provider_interface
* @return boolean true if the given user is authenticated or false if
* the session should be closed
*/
- public function validate_session(&$user)
+ public function validate_session($user)
{
global $request;
@@ -262,4 +262,9 @@ class phpbb_auth_provider_apache implements phpbb_auth_provider_interface
{
return;
}
+
+ public function logout($data, $new_session)
+ {
+ return;
+ }
}