Fix bug where Archive/Junk buttons were not active after page jump with select=all mode (#1490647)

Conflicts:

	program/js/app.js
release-1.0
Aleksander Machniak 8 years ago
parent a7fac6afb6
commit 7496302945

@ -4,6 +4,7 @@ CHANGELOG Roundcube Webmail
- Enable use of TLSv1.1 and TLSv1.2 for IMAP (#1490640)
- Fix XSS issue in SVG images handling (#1490625)
- Fix (again) security issue in DBMail driver of password plugin [CVE-2015-2181] (#1490643)
- Fix bug where Archive/Junk buttons were not active after page jump with select=all mode (#1490647)
RELEASE 1.0.8
-------------

@ -7111,7 +7111,9 @@ function rcube_webmail()
this.enable_command('expand-all', 'expand-unread', 'collapse-all', this.env.threading && this.env.messagecount);
if ((response.action == 'list' || response.action == 'search') && this.message_list) {
this.msglist_select(this.message_list);
// trigger 'select' so all dependent actions update its state
// e.g. plugins use this event to activate buttons (#1490647)
this.message_list.triggerEvent('select');
this.triggerEvent('listupdate', { folder:this.env.mailbox, rowcount:this.message_list.rowcount });
}
}

Loading…
Cancel
Save