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

fix call to log method #37

Merged
merged 1 commit into from
Jan 8, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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