We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e614cdc commit 8771dd5Copy full SHA for 8771dd5
resources/lib/UnityUser.php
@@ -71,6 +71,7 @@ public function init($send_mail = true)
71
$ldapUserEntry->setAttribute("uid", $this->uid);
72
$ldapUserEntry->setAttribute("givenname", $this->getFirstname());
73
$ldapUserEntry->setAttribute("sn", $this->getLastname());
74
+ $ldapUserEntry->setAttribute("gecos", "{$this->getFirstname()} {$this->getLastname()}");
75
$ldapUserEntry->setAttribute("mail", $this->getMail());
76
$ldapUserEntry->setAttribute("o", $this->getOrg());
77
$ldapUserEntry->setAttribute("homedirectory", self::HOME_DIR . $this->uid);
0 commit comments