Skip to content

Commit

Permalink
Fix message list multi-select/deselect issue (#5219)
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Apr 21, 2016
1 parent f0fa932 commit 7dad859
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ CHANGELOG Roundcube Webmail
===========================

- Enigma: Added enigma_debug option
- Fix message list multi-select/deselect issue (#5219)

RELEASE 1.2-rc
--------------
Expand Down
2 changes: 1 addition & 1 deletion program/js/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
},
Expand Down

0 comments on commit 7dad859

Please sign in to comment.