diff options
author | thomascube <thomas@roundcube.net> | 2011-04-11 19:10:21 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-04-11 19:10:21 +0000 |
commit | a41dcfecb073d86cf02d4790d86a28945930ff73 (patch) | |
tree | 3013a5fc2beb8a276be35dadc226f2697bdb8838 /program/js/app.js | |
parent | 37463345d56b9f4a35417bfd24af792912ca9009 (diff) |
Fix call to parent window
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index bfce7c7ed..8d94e0206 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -5193,7 +5193,7 @@ function rcube_webmail() this.set_busy(true); if (this.is_framed()) - parent.redirect(url, lock); + parent.rcmail.redirect(url, lock); else this.location_href(url, window); }; |