diff options
| author | Nathan Kinkade <nkinkade@nkinka.de> | 2009-04-04 19:40:03 +0000 |
|---|---|---|
| committer | Nathan Kinkade <nkinkade@nkinka.de> | 2009-04-04 19:40:03 +0000 |
| commit | f3bb47d0e30a2e581b5017f5b7da7bb4290b60cc (patch) | |
| tree | 3af1196f3fb313100c80924fc5b29fed2378b3cb /roundcubemail/program/js/app.js | |
| parent | 104e16492cfac7c170446f888995ee989d492db2 (diff) | |
Fixes moving and copying of threads so that all children of selected messages get moved along with the selected message itself.
Diffstat (limited to 'roundcubemail/program/js/app.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 1552bb568..d232c8510 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -1890,7 +1890,7 @@ function rcube_webmail() { var a_uids = new Array(); var r_uids = new Array(); - var selection = this.message_list ? this.message_list.get_selection() : new Array(); + var selection = this.message_list ? this.message_list.get_selection('mark') : new Array(); if (uid) a_uids[0] = uid; |
