diff options
author | alecpl <alec@alec.pl> | 2012-04-16 11:59:08 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2012-04-16 11:59:08 +0000 |
commit | be98dfc2c0bdc4f911c6daa94e3fddc29afc89a8 (patch) | |
tree | 05907bc164d7c41157ad1087be672d7bbcbac980 /program/include/rcube_output_json.php | |
parent | 1aceb9cec82639250a603aa0806f0399f7bae68d (diff) |
- Replace some references to rcmail with rcube
Diffstat (limited to 'program/include/rcube_output_json.php')
-rw-r--r-- | program/include/rcube_output_json.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_output_json.php b/program/include/rcube_output_json.php index 1d9d6edf6..d48dd35c1 100644 --- a/program/include/rcube_output_json.php +++ b/program/include/rcube_output_json.php @@ -170,7 +170,7 @@ class rcube_output_json extends rcube_output */ public function redirect($p = array(), $delay = 1) { - $location = rcmail::get_instance()->url($p); + $location = $this->app->url($p); $this->remote_response(sprintf("window.setTimeout(function(){ %s.redirect('%s',true); }, %d);", rcmail::JS_OBJECT_NAME, $location, $delay)); exit; |