Changeset 3d5240b7 in github


Ignore:
Timestamp:
Apr 11, 2012 12:03:16 PM (13 months ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
Children:
194b45c
Parents:
4dbc961
Message:
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r4dbc961 r3d5240b7  
    33 
    44- Set flexible width to login form fields (#1488418) 
    5 - Force page reload if list columns changed in IE8 (#1487822) 
     5- Fix re-draw bug on list columns change in IE8 (#1487822) 
    66- Allow mass-removal of addresses from a group (#1487748) 
    77- Fix removing all contacts on import to LDAP addressbook 
  • program/include/rcube_json_output.php

    rc97c575 r3d5240b7  
    213213    { 
    214214        $location = rcmail::get_instance()->url($p); 
    215         $this->remote_response(sprintf("window.setTimeout(function(){ %s.redirect('%s',true); }, %d);", JS_OBJECT_NAME, $location, $delay)); 
     215        $this->remote_response("window.setTimeout(\"location.href='{$location}'\", $delay);"); 
    216216        exit; 
    217217    } 
  • program/steps/mail/list.inc

    rc97c575 r3d5240b7  
    5252} 
    5353 
    54 if ($save_arr) { 
     54if ($save_arr) 
    5555  $RCMAIL->user->save_prefs($save_arr); 
    56  
    57   // force page reload if list columns changed in IE8 (#1487822) 
    58   if ($save_arr['list_cols'] && $OUTPUT->browser->ie && $OUTPUT->browser->ver == 8) { 
    59     $OUTPUT->redirect(array('_mbox' => $RCMAIL->storage->get_folder()), 0); 
    60   } 
    61 } 
    6256 
    6357$mbox_name = $RCMAIL->storage->get_folder(); 
  • skins/default/mail.css

    r187e9f4 r3d5240b7  
    682682{ 
    683683  padding-left: 18px; 
     684  width: 99%; 
    684685} 
    685686 
  • skins/larry/mail.css

    r1ba07f0 r3d5240b7  
    580580} 
    581581 
     582#messagelist thead tr td.subject, 
    582583#messagelist tbody tr td.subject { 
    583584        width: 99%; 
Note: See TracChangeset for help on using the changeset viewer.