diff options
-rw-r--r-- | program/js/app.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/program/js/app.js b/program/js/app.js index a4f54715d..e6b6cff7c 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -3461,10 +3461,9 @@ function rcube_webmail() this.message_list.init(); break; + case 'purge': case 'list': - if (this.env.messagecount) - this.enable_command('purge', (this.env.mailbox==this.env.trash_mailbox || this.env.mailbox==this.env.junk_mailbox)); - + this.enable_command('purge', (this.env.messagecount && (this.env.mailbox==this.env.trash_mailbox || this.env.mailbox==this.env.junk_mailbox))); this.msglist_select(this.message_list); case 'getunread': |