From: Michael M Slusarz Date: Tue, 10 Mar 2009 18:17:45 +0000 (-0600) Subject: Correctly fix unflagging messages in viewport X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=568f98459c7fbd0f38db9ccaa7fb375218d2dd8e;p=horde.git Correctly fix unflagging messages in viewport --- diff --git a/imp/js/src/ViewPort.js b/imp/js/src/ViewPort.js index 05330b5dc..8205e7471 100644 --- a/imp/js/src/ViewPort.js +++ b/imp/js/src/ViewPort.js @@ -807,7 +807,7 @@ var ViewPort = Class.create({ if (add) { r.bg.push(flag); } else { - r.bg.without(flag); + r.bg = r.bg.without(flag); } if (filter) { this._updateFlag(this.createSelection('uid', r.vp_id, r.view), flag, add);