summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-02-06 14:13:37 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-02-06 14:13:37 +0000
commitde1eeba7ad83d38dc5e801e3b0f9ceb2d936413a (patch)
tree63e8a0cb92316d424780d81d0ed1dceafadf36c3 /roundcubemail/program
parent5a5cb083cc1f37ff8c012bdc59cfb1179b9f2d30 (diff)
- Fix selecting all unread does not honor new messages (#1485724)
git-svn-id: https://svn.roundcube.net/trunk@2276 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/js/list.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/list.js b/roundcubemail/program/js/list.js
index be26ee96a..0fd4fdab6 100644
--- a/roundcubemail/program/js/list.js
+++ b/roundcubemail/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);