From fbeb46890421b11736794f52ce96018d77f37595 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Fri, 21 Jan 2011 12:41:05 -0500 Subject: [PATCH] Better grouping of contact information --- program/steps/addressbook/edit.inc | 13 +++++++++---- 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/program/steps/addressbook/edit.inc b/program/steps/addressbook/edit.inc index 747e12a..0042679 100644 --- a/program/steps/addressbook/edit.inc +++ b/program/steps/addressbook/edit.inc @@ -95,15 +95,20 @@ 'info' => array( 'name' => rcube_label('contactproperties'), 'content' => array( - 'gender' => array('visible' => false), - 'maidenname' => array('size' => $i_size), 'email' => array('size' => $i_size, 'visible' => true), 'phone' => array('size' => $i_size, 'visible' => true), 'address' => array('visible' => true), - 'birthday' => array('size' => 12), - 'anniversary' => array('size' => $i_size), 'website' => array('size' => $i_size), 'im' => array('size' => $i_size), + ), + ), + 'personal' => array( + 'name' => rcube_label('personalinfo'), + 'content' => array( + 'gender' => array('visible' => true), + 'maidenname' => array('size' => $i_size), + 'birthday' => array('visible' => true), + 'anniversary' => array('size' => $i_size), 'manager' => array('size' => $i_size), 'assistant' => array('size' => $i_size), 'spouse' => array('size' => $i_size), -- Gitblit v1.9.1