From 70838d643af7b25c918595b96f48655b45694811 Mon Sep 17 00:00:00 2001 From: cmcnulty Date: Tue, 31 Jan 2006 03:06:13 +0000 Subject: fixed select-all bug git-svn-id: https://svn.roundcube.net/trunk@128 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/js/app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index e0e31ed09..c216a73f4 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -449,7 +449,7 @@ function rcube_webmail() this.list_rows = this.contact_rows; if (this.env.cid) - this.select(this.env.cid); + this.highlight_row(this.env.cid); }; @@ -513,7 +513,7 @@ function rcube_webmail() this.list_rows = this.identity_rows; if (this.env.iid) - this.select(this.env.iid); + this.highlight_row(this.env.iid); }; @@ -1300,7 +1300,7 @@ function rcube_webmail() for (var n in this.list_rows) if (!filter || this.list_rows[n][filter]==true) - this.select(n, true); + this.highlight_row(n, true); }; -- cgit v1.2.3