From 98bf5f3dd74f20e2ddbbeace460487fcadf6962b Mon Sep 17 00:00:00 2001 From: alecpl Date: Fri, 6 Feb 2009 14:13:37 +0000 Subject: - Fix selecting all unread does not honor new messages (#1485724) --- program/js/list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'program') 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); -- cgit v1.2.3