increased user+group size
This commit is contained in:
parent
5cd7d6b756
commit
a125746ed5
|
@ -1113,7 +1113,7 @@ class posixAccount extends baseModule implements passwordService {
|
|||
if (isset($this->attributes['uid'][0])) $userName = $this->attributes['uid'][0];
|
||||
$uidInput = new htmlTableExtendedInputField(_("User name"), 'uid', $userName, 'uid');
|
||||
$uidInput->setRequired(true);
|
||||
$uidInput->setFieldMaxLength(50);
|
||||
$uidInput->setFieldMaxLength(100);
|
||||
$return->addElement($uidInput, true);
|
||||
$commonName = '';
|
||||
if (isset($this->attributes['cn'][0])) $commonName = $this->attributes['cn'][0];
|
||||
|
|
|
@ -177,7 +177,7 @@ class posixGroup extends baseModule implements passwordService {
|
|||
}
|
||||
$cnInput = new htmlTableExtendedInputField(_("Group name"), 'cn', $cn, 'cn');
|
||||
$cnInput->setRequired(true);
|
||||
$cnInput->setFieldMaxLength(30);
|
||||
$cnInput->setFieldMaxLength(100);
|
||||
$return->addElement($cnInput, true);
|
||||
}
|
||||
// GID number
|
||||
|
|
Loading…
Reference in New Issue