Changeset 6060 in subversion
- Timestamp:
- Apr 11, 2012 11:30:19 AM (13 months ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 3 edited
-
CHANGELOG (modified) (1 diff)
-
program/include/rcube_json_output.php (modified) (1 diff)
-
program/steps/mail/list.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r6059 r6060 2 2 =========================== 3 3 4 - Force page reload if list columns changed in IE8 (#1487822) 4 5 - Allow mass-removal of addresses from a group (#1487748) 5 6 - Fix removing all contacts on import to LDAP addressbook -
trunk/roundcubemail/program/include/rcube_json_output.php
r5787 r6060 213 213 { 214 214 $location = rcmail::get_instance()->url($p); 215 $this->remote_response( "window.setTimeout(\"location.href='{$location}'\", $delay);");215 $this->remote_response(sprintf("window.setTimeout(function(){ %s.redirect('%s',true); }, %d);", JS_OBJECT_NAME, $location, $delay)); 216 216 exit; 217 217 } -
trunk/roundcubemail/program/steps/mail/list.inc
r5787 r6060 52 52 } 53 53 54 if ($save_arr) 54 if ($save_arr) { 55 55 $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 } 56 62 57 63 $mbox_name = $RCMAIL->storage->get_folder();
Note: See TracChangeset
for help on using the changeset viewer.
