Changeset 3173729 in github


Ignore:
Timestamp:
Aug 10, 2011 7:53:41 AM (22 months ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
83b20a3
Parents:
f2ff370
Message:

Add newlines between organization, department, jobtitle (#1488028)

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    rf2ff370 r3173729  
    22=========================== 
    33 
     4- Add newlines between organization, department, jobtitle (#1488028) 
    45- Recalculate date when replying to a message and localize the cite header (#1487675) 
    56- Fix XSS vulnerability in UI messages (#1488030) 
  • program/steps/addressbook/edit.inc

    r34854b6 r3173729  
    9696                'name' => array('size' => 2*$i_size), 
    9797                '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), 
    101101            ) 
    102102        ) 
  • program/steps/addressbook/func.inc

    r2c77f553 r3173729  
    3333  'nickname'     => array('type' => 'text', 'size' => 40, 'limit' => 1, 'label' => rcube_label('nickname'), 'category' => 'main'), 
    3434  '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'), 
    3737  'gender'       => array('type' => 'select', 'limit' => 1, 'label' => rcube_label('gender'), 'options' => array('male' => rcube_label('male'), 'female' => rcube_label('female')), 'category' => 'personal'), 
    3838  'maidenname'   => array('type' => 'text', 'size' => 40, 'limit' => 1, 'label' => rcube_label('maidenname'), 'category' => 'personal'), 
     
    442442                'displayname' => array('name'), 
    443443                'nickname' => array('nickname'), 
    444                 'jobnames' => array('organization','department','jobtitle'), 
     444                'organization' => array('organization'), 
     445                'department' => array('department'), 
     446                'jobtitle' => array('jobtitle'), 
    445447            ); 
    446448            foreach ($field_blocks as $blockname => $colnames) { 
  • skins/default/addressbook.css

    rda89cf2 r3173729  
    268268 
    269269#contacthead .names input, 
    270 #contacthead .addnames input, 
    271 #contacthead .jobnames input 
     270#contacthead .addnames input 
    272271{ 
    273272        width: 180px; 
Note: See TracChangeset for help on using the changeset viewer.