diff options
Diffstat (limited to 'plugins/ldap/lib_ldap.php')
-rwxr-xr-x | plugins/ldap/lib_ldap.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ldap/lib_ldap.php b/plugins/ldap/lib_ldap.php index 16bd3a52869..2bb557919a2 100755 --- a/plugins/ldap/lib_ldap.php +++ b/plugins/ldap/lib_ldap.php @@ -35,7 +35,7 @@ class OC_USER_LDAP extends OC_USER_BACKEND { * Check if the login button is pressed and log the user in * */ - public static function loginLisener() { + public static function loginListener() { return(''); } @@ -69,7 +69,7 @@ class OC_USER_LDAP extends OC_USER_BACKEND { * Check if the logout button is pressed and logout the user * */ - public static function logoutLisener() { + public static function logoutListener() { if ( isset($_GET['logoutbutton']) AND isset($_SESSION['username']) ) { header('WWW-Authenticate: Basic realm="ownCloud"'); header('HTTP/1.0 401 Unauthorized'); |