aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/auth/provider_ldap.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/auth/provider_ldap.php')
-rw-r--r--phpBB/includes/auth/provider_ldap.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/phpBB/includes/auth/provider_ldap.php b/phpBB/includes/auth/provider_ldap.php
index c1f5b3e186..8270f50440 100644
--- a/phpBB/includes/auth/provider_ldap.php
+++ b/phpBB/includes/auth/provider_ldap.php
@@ -358,4 +358,14 @@ class phpbb_auth_provider_ldap implements phpbb_auth_provider_interface
{
return str_replace(array('*', '\\', '(', ')'), array('\\*', '\\\\', '\\(', '\\)'), $string);
}
+
+ public function logout($data, $new_session)
+ {
+ return;
+ }
+
+ public function validate_session($user)
+ {
+ return;
+ }
}