Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #37 from Toromtomtom/master
Browse files Browse the repository at this point in the history
fix call to log method
  • Loading branch information
hydrian authored Jan 8, 2020
2 parents 52e452c + 5680503 commit 6f4fc14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/auth_ldap/init.php
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ function authenticate($login, $password) {
$this->_log('Multiple DNs found for username ' . (string) $login, E_USER_WARNING);
return FALSE;
} elseif ($count === 0) {
$this->_log((string) $login, 'Unknown User', E_USER_NOTICE);
$this->_log('Unknown User ' . (string) $login, E_USER_NOTICE);
return FALSE;
}

Expand Down

0 comments on commit 6f4fc14

Please sign in to comment.