diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-04-20 12:01:32 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-04-20 18:40:34 +0200 |
commit | a70234f3755626a3cf6a7f7ada1a9f4897bf5556 (patch) | |
tree | 4646ca3a8c2e8dfc85772092043e3450ae6c7beb | |
parent | 36a154e934b2e43fa24f2e177a5b6fe25b5eeffd (diff) |
Add _mbox argument to headers action URL
-rw-r--r-- | program/js/app.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js index a72f49e53..eb646aaff 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -6612,8 +6612,9 @@ function rcube_webmail() // fetch headers only once if (!this.gui_objects.all_headers_box.innerHTML) { - var lock = this.display_message(this.get_label('loading'), 'loading'); - this.http_post('headers', {_uid: this.env.uid}, lock); + this.http_post('headers', {_uid: this.env.uid, _mbox: this.env.mailbox}, + this.display_message(this.get_label('loading'), 'loading') + ); } }; |