From ce102f2fc7ac43d0282ac73ca2254985ee5719c4 Mon Sep 17 00:00:00 2001 From: thomascube Date: Sat, 1 Mar 2008 18:53:37 +0000 Subject: Don't check for class name in folder list --- program/js/app.js | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/program/js/app.js b/program/js/app.js index 07157244d..d1f0c9376 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -3287,11 +3287,8 @@ function rcube_webmail() if (!this.gui_objects.mailboxlist) return false; - var reg, text_obj; - var item = this.get_folder_li(mbox); - mbox = String(mbox).toLowerCase().replace(this.identifier_expr, ''); - - if (item && item.className && item.className.indexOf('mailbox '+mbox)>=0) + var reg, text_obj, item; + if (item = this.get_folder_li(mbox)) { // set new text text_obj = item.firstChild; -- cgit v1.2.3