mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 16:19:06 +01:00
- Ajout d'information lors d'erreurs Net_LDAP
This commit is contained in:
parent
2a09d9855a
commit
a1b75aab6b
2 changed files with 11 additions and 3 deletions
|
@ -25,6 +25,10 @@ $GLOBALS['LSerror_code'] = array (
|
|||
'msg' => _("Erreur inconnue!"),
|
||||
'level' => 'c'
|
||||
),
|
||||
0 => array(
|
||||
'msg' => "%{msg}",
|
||||
'level' => 'c'
|
||||
),
|
||||
// LSldap
|
||||
1 => array (
|
||||
'msg' => _("LSldap : Erreur durant la connexion au serveur LDAP (%{msg})."),
|
||||
|
@ -46,6 +50,10 @@ $GLOBALS['LSerror_code'] = array (
|
|||
'msg' => _("LSldap : Erreur durant la mise à jour de l'entrée Ldap (DN : %{dn})."),
|
||||
'level' => 'c'
|
||||
),
|
||||
6 => array (
|
||||
'msg' => _("LSldap : Erreur durant la suppression des attributs vides."),
|
||||
'level' => 'w'
|
||||
),
|
||||
|
||||
// LSldapObject
|
||||
21 => array (
|
||||
|
|
|
@ -274,7 +274,7 @@ class LSldap {
|
|||
|
||||
if (Net_LDAP2::isError($ret)) {
|
||||
$GLOBALS['LSerror'] -> addErrorCode(5,$dn);
|
||||
debug('NetLdap-Error : '.$ret->getMessage());
|
||||
$GLOBALS['LSerror'] -> addErrorCode(0,'NetLdap-Error : '.$ret->getMessage());
|
||||
}
|
||||
else {
|
||||
if (!empty($dropAttr)) {
|
||||
|
@ -283,8 +283,8 @@ class LSldap {
|
|||
}
|
||||
$ret = $entry -> update();
|
||||
if (Net_LDAP2::isError($ret)) {
|
||||
debug('Erreur durant la suppression des attributs vides');
|
||||
debug('NetLdap-Error : '.$ret->getMessage());
|
||||
$GLOBALS['LSerror'] -> addErrorCode(6);
|
||||
$GLOBALS['LSerror'] -> addErrorCode(0,'NetLdap-Error : '.$ret->getMessage());
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue