diff options
author | thomascube <thomas@roundcube.net> | 2011-01-21 17:41:05 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-01-21 17:41:05 +0000 |
commit | fbeb46890421b11736794f52ce96018d77f37595 (patch) | |
tree | e6742b8c2a04882da11db2d1d39a2897da028cd6 /program/steps/addressbook/func.inc | |
parent | 26e76dfdd89f0183466f2d3354ff741680137c6f (diff) |
Better grouping of contact information
Diffstat (limited to 'program/steps/addressbook/func.inc')
-rw-r--r-- | program/steps/addressbook/func.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/addressbook/func.inc b/program/steps/addressbook/func.inc index e9b3dc8f2..900d4a8d5 100644 --- a/program/steps/addressbook/func.inc +++ b/program/steps/addressbook/func.inc @@ -497,7 +497,7 @@ function rcmail_contact_form($form, $record, $attrib = null) } // wrap rows in fieldgroup container - $content .= html::tag('fieldset', array('class' => 'contactfieldgroup contactcontroller' . $col, 'style' => ($rows ? null : 'display:none')), + $content .= html::tag('fieldset', array('class' => 'contactfieldgroup ' . ($colprop['subtypes'] ? 'contactfieldgroupmulti ' : '') . 'contactcontroller' . $col, 'style' => ($rows ? null : 'display:none')), ($colprop['subtypes'] ? html::tag('legend', null, Q($colprop['label'])) : ' ') . $rows); } |