- Fix selecting all unread does not honor new messages (#1485724)

release-0.6
alecpl 16 years ago
parent b7827e6ea1
commit 98bf5f3dd7

@ -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)

@ -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);

Loading…
Cancel
Save