summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2012-04-11 16:19:14 +0000
committerthomascube <thomas@roundcube.net>2012-04-11 16:19:14 +0000
commit194b45c673ba55f68759a8ba1117e4052cac2dfc (patch)
treeea3193a145e6e92016d9af085f63a5241e88d7a7 /program
parent3d5240b70d39b398018c0c04c420fc86da65d41a (diff)
Keep improvement from r6060: show 'loading...' message when redirecting
Diffstat (limited to 'program')
-rw-r--r--program/include/rcube_json_output.php2
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;
}