diff options
-rw-r--r-- | CHANGELOG | 4 | ||||
-rw-r--r-- | program/js/list.js | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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) diff --git a/program/js/list.js b/program/js/list.js index be26ee96a..0fd4fdab6 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -510,7 +510,7 @@ select_all: function(filter) 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); |