diff options
| author | cmcnulty <cmcnulty@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-05-24 19:27:32 +0000 |
|---|---|---|
| committer | cmcnulty <cmcnulty@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-05-24 19:27:32 +0000 |
| commit | 6eb894a7d3bce3aab67062fda5c76eaca0859ae9 (patch) | |
| tree | f3ff2e66d23b478330e72ee5d53c0ebd4ecff204 /roundcubemail/program/js | |
| parent | 8e3f2dba9a02bf9d57e162d74a7a5efef53436e5 (diff) | |
Fixed major bug with deleting a single message
git-svn-id: https://svn.roundcube.net/trunk@244 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js')
| -rw-r--r-- | roundcubemail/program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index a6b43cb8e..a834582d8 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/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) |
