diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-04-20 12:01:32 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-04-20 12:01:32 +0200 |
commit | 701905727c70908f594a9aae66443445a9fe1211 (patch) | |
tree | 997fa96eda8d6418510649b202787793dc71e0f9 /program | |
parent | ed763b2859c3d8143043b31363193d2f19c3f5dd (diff) |
Add _mbox argument to headers action URL
Diffstat (limited to 'program')
-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 48ec99615..0dd9abe36 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -6670,8 +6670,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') + ); } }; |