Changeset 3173729 in github
- Timestamp:
- Aug 10, 2011 7:53:41 AM (22 months ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 83b20a3
- Parents:
- f2ff370
- Files:
-
- 4 edited
-
CHANGELOG (modified) (1 diff)
-
program/steps/addressbook/edit.inc (modified) (1 diff)
-
program/steps/addressbook/func.inc (modified) (2 diffs)
-
skins/default/addressbook.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
rf2ff370 r3173729 2 2 =========================== 3 3 4 - Add newlines between organization, department, jobtitle (#1488028) 4 5 - Recalculate date when replying to a message and localize the cite header (#1487675) 5 6 - Fix XSS vulnerability in UI messages (#1488030) -
program/steps/addressbook/edit.inc
r34854b6 r3173729 96 96 'name' => array('size' => 2*$i_size), 97 97 'nickname' => array('size' => 2*$i_size), 98 ' company' => array('size' =>$i_size),99 'department' => array('size' => $i_size),100 'jobtitle' => array('size' => $i_size),98 'organization' => array('size' => 2*$i_size), 99 'department' => array('size' => 2*$i_size), 100 'jobtitle' => array('size' => 2*$i_size), 101 101 ) 102 102 ) -
program/steps/addressbook/func.inc
r2c77f553 r3173729 33 33 'nickname' => array('type' => 'text', 'size' => 40, 'limit' => 1, 'label' => rcube_label('nickname'), 'category' => 'main'), 34 34 'jobtitle' => array('type' => 'text', 'size' => 40, 'limit' => 1, 'label' => rcube_label('jobtitle'), 'category' => 'main'), 35 'organization' => array('type' => 'text', 'size' => 19, 'limit' => 1, 'label' => rcube_label('organization'), 'category' => 'main'),36 'department' => array('type' => 'text', 'size' => 19, 'limit' => 1, 'label' => rcube_label('department'), 'category' => 'main'),35 'organization' => array('type' => 'text', 'size' => 40, 'limit' => 1, 'label' => rcube_label('organization'), 'category' => 'main'), 36 'department' => array('type' => 'text', 'size' => 40, 'limit' => 1, 'label' => rcube_label('department'), 'category' => 'main'), 37 37 'gender' => array('type' => 'select', 'limit' => 1, 'label' => rcube_label('gender'), 'options' => array('male' => rcube_label('male'), 'female' => rcube_label('female')), 'category' => 'personal'), 38 38 'maidenname' => array('type' => 'text', 'size' => 40, 'limit' => 1, 'label' => rcube_label('maidenname'), 'category' => 'personal'), … … 442 442 'displayname' => array('name'), 443 443 'nickname' => array('nickname'), 444 'jobnames' => array('organization','department','jobtitle'), 444 'organization' => array('organization'), 445 'department' => array('department'), 446 'jobtitle' => array('jobtitle'), 445 447 ); 446 448 foreach ($field_blocks as $blockname => $colnames) { -
skins/default/addressbook.css
rda89cf2 r3173729 268 268 269 269 #contacthead .names input, 270 #contacthead .addnames input, 271 #contacthead .jobnames input 270 #contacthead .addnames input 272 271 { 273 272 width: 180px;
Note: See TracChangeset
for help on using the changeset viewer.
