From 91cbfcd7de416bf4e38eadbd06cc33265c917df7 Mon Sep 17 00:00:00 2001 From: thomasb Date: Wed, 10 Aug 2011 11:53:41 +0000 Subject: Add newlines between organization, department, jobtitle (#1488028) git-svn-id: https://svn.roundcube.net/trunk@5041 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/steps/addressbook/func.inc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'roundcubemail/program/steps/addressbook/func.inc') diff --git a/roundcubemail/program/steps/addressbook/func.inc b/roundcubemail/program/steps/addressbook/func.inc index 4de463710..287ce2952 100644 --- a/roundcubemail/program/steps/addressbook/func.inc +++ b/roundcubemail/program/steps/addressbook/func.inc @@ -32,8 +32,8 @@ $CONTACT_COLTYPES = array( 'suffix' => array('type' => 'text', 'size' => 8, 'limit' => 1, 'label' => rcube_label('namesuffix'), 'category' => 'main'), 'nickname' => array('type' => 'text', 'size' => 40, 'limit' => 1, 'label' => rcube_label('nickname'), 'category' => 'main'), 'jobtitle' => array('type' => 'text', 'size' => 40, 'limit' => 1, 'label' => rcube_label('jobtitle'), 'category' => 'main'), - 'organization' => array('type' => 'text', 'size' => 19, 'limit' => 1, 'label' => rcube_label('organization'), 'category' => 'main'), - 'department' => array('type' => 'text', 'size' => 19, 'limit' => 1, 'label' => rcube_label('department'), 'category' => 'main'), + 'organization' => array('type' => 'text', 'size' => 40, 'limit' => 1, 'label' => rcube_label('organization'), 'category' => 'main'), + 'department' => array('type' => 'text', 'size' => 40, 'limit' => 1, 'label' => rcube_label('department'), 'category' => 'main'), 'gender' => array('type' => 'select', 'limit' => 1, 'label' => rcube_label('gender'), 'options' => array('male' => rcube_label('male'), 'female' => rcube_label('female')), 'category' => 'personal'), 'maidenname' => array('type' => 'text', 'size' => 40, 'limit' => 1, 'label' => rcube_label('maidenname'), 'category' => 'personal'), 'phone' => array('type' => 'text', 'size' => 40, 'label' => rcube_label('phone'), 'subtypes' => array('home','home2','work','work2','mobile','main','homefax','workfax','car','pager','video','assistant','other'), 'category' => 'main'), @@ -441,7 +441,9 @@ function rcmail_contact_form($form, $record, $attrib = null) 'names' => array('prefix','firstname','middlename','surname','suffix'), 'displayname' => array('name'), 'nickname' => array('nickname'), - 'jobnames' => array('organization','department','jobtitle'), + 'organization' => array('organization'), + 'department' => array('department'), + 'jobtitle' => array('jobtitle'), ); foreach ($field_blocks as $blockname => $colnames) { $fields = ''; -- cgit v1.2.3