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

pull/5227/head
Aleksander Machniak 9 years ago
parent f0fa9324d8
commit 7dad859ffa

@ -2,6 +2,7 @@ CHANGELOG Roundcube Webmail
=========================== ===========================
- Enigma: Added enigma_debug option - Enigma: Added enigma_debug option
- Fix message list multi-select/deselect issue (#5219)
RELEASE 1.2-rc RELEASE 1.2-rc
-------------- --------------

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

Loading…
Cancel
Save