From 86e8c7d701f352afbcef66b4b04226f556ba2d4e Mon Sep 17 00:00:00 2001 From: nuxsmin Date: Thu, 26 Jan 2017 12:37:04 +0100 Subject: [PATCH] * [FIX] Fixed issue when logging an event from the LDAP module. Solves #386. Thanks to @MAndretti for the feedback --- inc/SP/Auth/Ldap/LdapBase.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/SP/Auth/Ldap/LdapBase.class.php b/inc/SP/Auth/Ldap/LdapBase.class.php index 3e12f7db..13268dac 100644 --- a/inc/SP/Auth/Ldap/LdapBase.class.php +++ b/inc/SP/Auth/Ldap/LdapBase.class.php @@ -431,7 +431,7 @@ abstract class LdapBase implements LdapInterface, AuthInterface if (!$this->searchBase || !$this->server || !$this->bindDn || !$this->bindPass) { $this->LogMessage->setAction(__FUNCTION__); - $this->LogMessage->setDescription(__('Los parámetros de LDAP no están configurados', false)); + $this->LogMessage->addDescription(__('Los parámetros de LDAP no están configurados', false)); $this->writeLog(); return false;