Fix message list multi-select/deselect issue (#5219)

Conflicts:

	CHANGELOG
pull/5330/head
Aleksander Machniak 8 years ago
parent 25bc871ee7
commit 550143269a

@ -1,6 +1,8 @@
CHANGELOG Roundcube Webmail
===========================
- Fix message list multi-select/deselect issue (#5219)
RELEASE 1.1.5
-------------
- Plugin API: Add html2text hook

@ -1108,7 +1108,7 @@ in_selection: function(id, index)
{
for (var n in this.selection)
if (this.selection[n] == id)
return index ? n : true;
return index ? parseInt(n) : true;
return false;
},

Loading…
Cancel
Save