diff options
author | alecpl <alec@alec.pl> | 2011-12-05 07:24:36 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-12-05 07:24:36 +0000 |
commit | db4ec58b9086d55dfd22366850e21486fc5211e6 (patch) | |
tree | 1946ba1f33116602a0a9a42da34cc36d1d8e80d8 /program/js | |
parent | f47d5e20891305d4c40f4f500318cfcbea4d2135 (diff) |
- Apply fixes from trunk up to r5542
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 8ffcf93af..de7cb62b7 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -228,7 +228,8 @@ function rcube_webmail() this.enable_command('reply-list', this.env.list_post); if (this.env.action == 'show') { - this.http_request('pagenav', '_uid='+this.env.uid+'&_mbox='+urlencode(this.env.mailbox), + this.http_request('pagenav', '_uid='+this.env.uid+'&_mbox='+urlencode(this.env.mailbox) + + (this.env.search_request ? '&_search='+this.env.search_request : ''), this.display_message('', 'loading')); } |