diff options
author | svncommit <devs@roundcube.net> | 2006-05-24 19:27:32 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2006-05-24 19:27:32 +0000 |
commit | 717169353e7da3aad7948c7ef1e66542b2bfa8d0 (patch) | |
tree | 615a6c4823b9e4d290aa76e235a10ecc5c49df55 | |
parent | 1c585394b5d08124451340b0e75df060c3f6a23a (diff) |
Fixed major bug with deleting a single message
-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 a6b43cb8e..a834582d8 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1715,7 +1715,7 @@ function rcube_webmail() return false; if (a_uids.length==1){ - if(this.message_rows[uid].classname.indexOf('deleted') < 0 ){ + if(this.message_rows[a_uids[0]].classname.indexOf('deleted') < 0 ){ this.flag_as_deleted(a_uids) } else { this.flag_as_undeleted(a_uids) |