summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-12-04 13:37:44 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-12-04 13:37:44 +0000
commitb601ebd0d936949b0883d5632d129a9b85b5150f (patch)
tree84f742d36f111a6895d70749b6292a98a28b4729 /roundcubemail/program
parentc54ffeb81af61543656ec44c6dcd288befc1bb9e (diff)
- Fix navigation in messages search results
git-svn-id: https://svn.roundcube.net/trunk@5538 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/js/app.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index f17e2f432..c0268d4fd 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/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'));
}