From b601ebd0d936949b0883d5632d129a9b85b5150f Mon Sep 17 00:00:00 2001 From: alec Date: Sun, 4 Dec 2011 13:37:44 +0000 Subject: - Fix navigation in messages search results git-svn-id: https://svn.roundcube.net/trunk@5538 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/CHANGELOG | 1 + roundcubemail/program/js/app.js | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index f476e94b8..ed4999f6b 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/CHANGELOG @@ -1,6 +1,7 @@ CHANGELOG Roundcube Webmail =========================== +- Fix navigation in messages search results - Improved handling of some malformed values encoded with quoted-printable (#1488232) - Add possibility to do LDAP bind before searching for bind DN - Fix handling of empty tags in HTML messages (#1488225) 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')); } -- cgit v1.2.3