diff options
author | alecpl <alec@alec.pl> | 2011-12-04 13:37:44 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-12-04 13:37:44 +0000 |
commit | e8d9073818235ed9615c9a1fe21c7956dd0c7920 (patch) | |
tree | 6b04da582588bd412dea5a2d5d46b49d771d4823 /program/js/app.js | |
parent | 84ff800248b585ca37b0a286f563110c14bc4ad9 (diff) |
- Fix navigation in messages search results
Diffstat (limited to 'program/js/app.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 f17e2f432..c0268d4fd 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')); } |