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

pull/322/head
Aleksander Machniak 9 years ago
parent 5a30653024
commit c10eae0884

@ -17,6 +17,7 @@ CHANGELOG Roundcube Webmail
- Fix XSS issue in SVG images handling (#1490625) - Fix XSS issue in SVG images handling (#1490625)
- Fix missing language name in "Add to Dictionary" request in HTML mode (#1490634) - Fix missing language name in "Add to Dictionary" request in HTML mode (#1490634)
- Fix (again) security issue in DBMail driver of password plugin [CVE-2015-2181] (#1490643) - 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.2-beta RELEASE 1.2-beta
---------------- ----------------

@ -8110,7 +8110,10 @@ function rcube_webmail()
this.enable_command('set-listmode', this.env.threads && !is_multifolder); this.enable_command('set-listmode', this.env.threads && !is_multifolder);
if (list.rowcount > 0 && !$(document.activeElement).is('input,textarea')) if (list.rowcount > 0 && !$(document.activeElement).is('input,textarea'))
list.focus(); list.focus();
this.msglist_select(list);
// trigger 'select' so all dependent actions update its state
// e.g. plugins use this event to activate buttons (#1490647)
list.triggerEvent('select');
} }
if (response.action != 'getunread') if (response.action != 'getunread')

Loading…
Cancel
Save