Aleksander Machniak
2016-04-21 550143269ac935bd20242e274557b4b99ea02b1f
Fix message list multi-select/deselect issue (#5219)

Conflicts:

CHANGELOG
2 files modified
4 ■■■ changed files
CHANGELOG 2 ●●●●● patch | view | raw | blame | history
program/js/list.js 2 ●●● patch | view | raw | blame | history
CHANGELOG
@@ -1,6 +1,8 @@
CHANGELOG Roundcube Webmail
===========================
- Fix message list multi-select/deselect issue (#5219)
RELEASE 1.1.5
-------------
- Plugin API: Add html2text hook
program/js/list.js
@@ -1108,7 +1108,7 @@
{
  for (var n in this.selection)
    if (this.selection[n] == id)
      return index ? n : true;
      return index ? parseInt(n) : true;
  return false;
},