diff options
author | thomascube <thomas@roundcube.net> | 2008-03-01 18:53:37 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-03-01 18:53:37 +0000 |
commit | ce102f2fc7ac43d0282ac73ca2254985ee5719c4 (patch) | |
tree | f39858fd98e3bea3033be4f45a2c6c2c9fa51963 /program/js/app.js | |
parent | 1f42ef51060481088910e2e85f9949d79ef814f5 (diff) |
Don't check for class name in folder list
Diffstat (limited to 'program/js/app.js')
-rw-r--r-- | program/js/app.js | 7 |
1 files 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; |