diff options
author | Gunnar Wrobel <wrobel@pardus.de> | 2007-07-10 16:56:15 (GMT) |
---|---|---|
committer | Gunnar Wrobel <wrobel@pardus.de> | 2007-07-10 16:56:15 (GMT) |
commit | f7a258276265f859371b84b28a054d3e3e74290f (patch) | |
tree | 4f2740b415402944cbfade0e183b71b8b19cef26 /www/admin/user/user.php.in | |
parent | 0af13c5dba046ce67bfccb72b29edacbfe875243 (diff) | |
download | kolab-webadmin-f7a258276265f859371b84b28a054d3e3e74290f.tar.gz |
* www/admin/user/user.php.in:
fixed kolab/issue1162 (Misplaced title field in webinterface)
https://intevation.de/roundup/kolab/issue1162
Diffstat (limited to 'www/admin/user/user.php.in')
-rw-r--r-- | www/admin/user/user.php.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/admin/user/user.php.in b/www/admin/user/user.php.in index ac96dd4..009fede 100644 --- a/www/admin/user/user.php.in +++ b/www/admin/user/user.php.in @@ -484,8 +484,7 @@ $entries = array( 'givenname' => array( 'name' => _('First Name'), 'policies' => array('anyone' => 4), 'validation' => 'checkpolicy', 'comment' => _('For automatic invitation handling') . '<br/>' . - _("NOTE: For regular accounts to use this feature, give the 'calendar' user access to the Calendar folder") ), - 'title_0' => array( 'name' => _('Title') ) ); + _("NOTE: For regular accounts to use this feature, give the 'calendar' user access to the Calendar folder") )); $entries['alias'] = array( 'name' => _('Email Aliases'), 'type' => 'textarea', @@ -504,6 +503,7 @@ $entries['kolabAllowSMTPRecipient'] =array( 'name' => _('Allowed Recipients'), 'comment' => _('restrict allowed recipients of SMTP messages') . '<br/>' . _('One entry per line.') ); +$entries['title_0'] = array( 'name' => _('Title') ); $entries['o_0'] = array( 'name' => _('Organisation') ); $entries['ou_0'] = array( 'name' => _('Organisational Unit') ); $entries['roomNumber_0'] = array( 'name' => _('Room Number') ); |