diff options
author | svncommit <devs@roundcube.net> | 2006-11-22 11:46:56 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2006-11-22 11:46:56 +0000 |
commit | 086377c7e648744daa7778673182de496a1b268d (patch) | |
tree | 1aa07e37d9b5edc8f8c6c49048c89c1ce9953cc1 /program/js | |
parent | e34ae17809c3dff8ed870405ffed4e0077cb8512 (diff) |
Fix a bug introduced with Shift-Del yesterday
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 8157159fd..bc6563ec8 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1343,7 +1343,7 @@ function rcube_webmail() // if there is a trash mailbox defined and we're not currently in it: if (this.env.trash_mailbox && String(this.env.mailbox).toLowerCase()!=String(this.env.trash_mailbox).toLowerCase()) // if shift was pressed delete it immediately - if (this.message_list.shiftkey) + if (this.message_list && this.message_list.shiftkey) { if (confirm(this.get_label('deletemessagesconfirm'))) this.permanently_remove_messages(); |