diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-04-11 15:30:19 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2012-04-11 15:30:19 +0000 |
| commit | 55ae47cbb3bc219c5b381b29643d43fbfe644203 (patch) | |
| tree | b3d5e2c8c5e01c76ff1849fbcef6e72be9db0f78 /roundcubemail/program/include/rcube_json_output.php | |
| parent | e190d37a300d93741ba9e7c31c39353d64986c01 (diff) | |
Force page reload if list columns changed in IE8 (#1487822)
git-svn-id: https://svn.roundcube.net/trunk@6060 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_json_output.php')
| -rw-r--r-- | roundcubemail/program/include/rcube_json_output.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_json_output.php b/roundcubemail/program/include/rcube_json_output.php index 99f08f5c9..f062d4b71 100644 --- a/roundcubemail/program/include/rcube_json_output.php +++ b/roundcubemail/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; } |
