diff options
author | thomascube <thomas@roundcube.net> | 2012-04-11 15:30:19 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2012-04-11 15:30:19 +0000 |
commit | c97c5756710f651873e4e7c600d46fba917d43c7 (patch) | |
tree | 89058d36e6328ec12cc2b62c6310c84e2ebf6f80 /program/include | |
parent | 1ba07f070998d32d115d90d0d73db2dca59c4690 (diff) |
Force page reload if list columns changed in IE8 (#1487822)
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcube_json_output.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_json_output.php b/program/include/rcube_json_output.php index 99f08f5c9..f062d4b71 100644 --- a/program/include/rcube_json_output.php +++ b/program/include/rcube_json_output.php @@ -212,7 +212,7 @@ class rcube_json_output public function redirect($p = array(), $delay = 1) { $location = rcmail::get_instance()->url($p); - $this->remote_response("window.setTimeout(\"location.href='{$location}'\", $delay);"); + $this->remote_response(sprintf("window.setTimeout(function(){ %s.redirect('%s',true); }, %d);", JS_OBJECT_NAME, $location, $delay)); exit; } |