Fix bug where search was reset after returning from compose opened by reply button(s)

pull/264/head
Aleksander Machniak 10 years ago
parent b196d229c3
commit de0bc662f9

@ -9,6 +9,7 @@ CHANGELOG Roundcube Webmail
- Fix XSS issue in style attribute handling (#1490227) - Fix XSS issue in style attribute handling (#1490227)
- Fix bug where Drafts list wasn't updated on draft-save action in new window (#1490225) - Fix bug where Drafts list wasn't updated on draft-save action in new window (#1490225)
- Fix so "set as default" option is hidden if identities_level > 1 (#1490226) - Fix so "set as default" option is hidden if identities_level > 1 (#1490226)
- Fix bug where search was reset after returning from compose visited for reply
RELEASE 1.1-rc RELEASE 1.1-rc
-------------- --------------

@ -1055,12 +1055,9 @@ function rcube_webmail()
url = {}; url = {};
if (this.task == 'mail') { if (this.task == 'mail') {
url._mbox = this.env.mailbox; url = {_mbox: this.env.mailbox, _search: this.env.search_request};
if (props) if (props)
url._to = props; url._to = props;
// also send search request so we can go back to search result after message is sent
if (this.env.search_request)
url._search = this.env.search_request;
} }
// modify url if we're in addressbook // modify url if we're in addressbook
else if (this.task == 'addressbook') { else if (this.task == 'addressbook') {
@ -1155,7 +1152,7 @@ function rcube_webmail()
case 'reply-list': case 'reply-list':
case 'reply': case 'reply':
if (uid = this.get_single_uid()) { if (uid = this.get_single_uid()) {
url = {_reply_uid: uid, _mbox: this.get_message_mailbox(uid)}; url = {_reply_uid: uid, _mbox: this.get_message_mailbox(uid), _search: this.env.search_request};
if (command == 'reply-all') if (command == 'reply-all')
// do reply-list, when list is detected and popup menu wasn't used // do reply-list, when list is detected and popup menu wasn't used
url._all = (!props && this.env.reply_all_mode == 1 && this.commands['reply-list'] ? 'list' : 'all'); url._all = (!props && this.env.reply_all_mode == 1 && this.commands['reply-list'] ? 'list' : 'all');

Loading…
Cancel
Save