alecpl
2009-02-06 98bf5f3dd74f20e2ddbbeace460487fcadf6962b
- Fix selecting all unread does not honor new messages (#1485724)


2 files modified
6 ■■■■ changed files
CHANGELOG 4 ●●●● patch | view | raw | blame | history
program/js/list.js 2 ●●● patch | view | raw | blame | history
CHANGELOG
@@ -1,6 +1,10 @@
CHANGELOG RoundCube Webmail
---------------------------
2009/02/06 (alec)
----------
- Fix selecting all unread does not honor new messages (#1485724)
2009/02/05 (alec)
----------
- Support NGINX as IMAP backend: better BAD response handling (#1485720)
program/js/list.js
@@ -510,7 +510,7 @@
  for (var n in this.rows)
  {
    if (!filter || this.rows[n][filter]==true)
    if (!filter || (this.rows[n] && this.rows[n][filter] == true))
    {
      this.last_selected = n;
      this.highlight_row(n, true);