diff --git a/lam/lib/modules/account.inc b/lam/lib/modules/account.inc index 8fd4ae36..206fd90a 100644 --- a/lam/lib/modules/account.inc +++ b/lam/lib/modules/account.inc @@ -104,7 +104,8 @@ class account extends baseModule { $return['upload_columns'][] = array( 'name' => 'account_description', 'description' => _('Description'), - 'help' => 'description' + 'help' => 'description', + 'example' => '' ); return $return; } diff --git a/lam/lib/modules/inetOrgPerson.inc b/lam/lib/modules/inetOrgPerson.inc index 8928e203..1719823a 100644 --- a/lam/lib/modules/inetOrgPerson.inc +++ b/lam/lib/modules/inetOrgPerson.inc @@ -1097,7 +1097,7 @@ class inetOrgPerson extends baseModule implements passwordService { 'description' => _('Common name'), 'help' => 'cn', 'example' => _('Steve Miller'), - 'default' => '<inetOrgPerson_firstName> <inetOrgPerson_lastName>' + 'default' => '{inetOrgPerson_firstName} {inetOrgPerson_lastName}' ); $return[] = array( 'name' => 'inetOrgPerson_userName', diff --git a/lam/lib/modules/posixAccount.inc b/lam/lib/modules/posixAccount.inc index 7faa04db..f7d46457 100644 --- a/lam/lib/modules/posixAccount.inc +++ b/lam/lib/modules/posixAccount.inc @@ -223,7 +223,7 @@ class posixAccount extends baseModule implements passwordService { 'description' => _('Home directory'), 'help' => 'homeDirectory_upload', 'example' => _('/home/smiller'), - 'default' => '/home/<posixAccount_userName>' + 'default' => '/home/{posixAccount_userName}' ), array( 'name' => 'posixAccount_createHomeDir', diff --git a/lam/lib/modules/sambaSamAccount.inc b/lam/lib/modules/sambaSamAccount.inc index d10f1d23..aed7fa0c 100644 --- a/lam/lib/modules/sambaSamAccount.inc +++ b/lam/lib/modules/sambaSamAccount.inc @@ -452,7 +452,7 @@ class sambaSamAccount extends baseModule implements passwordService { 'description' => _('Samba RID'), 'help' => 'ridUpload', 'example' => '1235', - 'default' => '<uidNumber>*2 + <sambaAlgorithmicRidBase>' + 'default' => '{uidNumber}*2 + {sambaAlgorithmicRidBase}' ), ); if (!$this->isBooleanConfigOptionSet('sambaSamAccount_hideHomeDrive')) { @@ -518,7 +518,7 @@ class sambaSamAccount extends baseModule implements passwordService { 'description' => _('Samba RID'), 'help' => 'ridUploadHost', 'example' => '1235', - 'default' => '<uidNumber>*2 + <sambaAlgorithmicRidBase>' + 'default' => '{uidNumber}*2 + {sambaAlgorithmicRidBase}' ) ); }