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

pull/5393/head^2
Aleksander Machniak 8 years ago
parent 80919e1cf5
commit 99cb08c41c

@ -46,6 +46,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
-------------

@ -1263,7 +1263,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)
@ -5081,6 +5080,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