Fix so "All" messages selection is resetted on search reset (#5413)

pull/5754/head
Aleksander Machniak 8 years ago
parent d885051fd7
commit fed6078b28

@ -12,6 +12,7 @@ CHANGELOG Roundcube Webmail
- Fix bug where blocked.gif couldn't be attached to reply/forward with insecure content
- Fix E_DEPRECATED warning when using Auth_SASL::factory() (#5401)
- Fix bug where names of downloaded files could be malformed when derived from the message subject (#5404)
- Fix so "All" messages selection is resetted on search reset (#5413)
RELEASE 1.2.1
-------------

@ -1247,7 +1247,6 @@ function rcube_webmail()
var n, s = this.env.search_request || this.env.qsearch;
this.reset_qsearch(true);
this.select_all_mode = false;
if (s && this.env.action == 'compose') {
if (this.contact_list)
@ -4969,6 +4968,7 @@ function rcube_webmail()
this.env.qsearch = null;
this.env.search_request = null;
this.env.search_id = null;
this.select_all_mode = false;
this.enable_command('set-listmode', this.env.threads);
};

Loading…
Cancel
Save