- LSaddons : Correction des erreurs de génération CN & displayName

This commit is contained in:
Benjamin Renard 2008-10-06 13:36:41 +00:00
parent d42aef9e4d
commit 3ebcb1b2fd

View file

@ -91,10 +91,10 @@
return; return;
} }
$nom = $ldapObject -> attrs[ LS_SUPANN_LASTNAME_ATTR ] -> getValue(); $noms = $ldapObject -> attrs[ LS_SUPANN_LASTNAME_ATTR ] -> getValue();
$prenom = $ldapObject -> attrs[ LS_SUPANN_FIRSTNAME_ATTR ] -> getValue(); $prenoms = $ldapObject -> attrs[ LS_SUPANN_FIRSTNAME_ATTR ] -> getValue();
return ($prenom.' '.$nom); return ($prenoms[0].' '.$noms[0]);
} }
/** /**
@ -116,10 +116,10 @@
return; return;
} }
$nom = $ldapObject -> attrs[ LS_SUPANN_LASTNAME_ATTR ] -> getValue(); $noms = $ldapObject -> attrs[ LS_SUPANN_LASTNAME_ATTR ] -> getValue();
$prenom = $ldapObject -> attrs[ LS_SUPANN_FIRSTNAME_ATTR ] -> getValue(); $prenoms = $ldapObject -> attrs[ LS_SUPANN_FIRSTNAME_ATTR ] -> getValue();
return (replaceAccents($nom).' '.replaceAccents($prenom)); return (replaceAccents($noms[0]).' '.replaceAccents($prenoms[0]));
} }