diff options
author | alecpl <alec@alec.pl> | 2009-10-06 13:04:44 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-10-06 13:04:44 +0000 |
commit | b4d940b112f05f734001721e25040d9768677a93 (patch) | |
tree | 0dbddfbeb0b65c2647fa3140f4658c434ee36610 | |
parent | 6fff3c8e028af438f3e7857f29991687561cc67d (diff) |
- Fix newly attached files are not saved in drafts w/o editing any text (#1486202)
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/js/app.js | 8 |
2 files changed, 7 insertions, 2 deletions
@@ -1,6 +1,7 @@ CHANGELOG RoundCube Webmail =========================== +- Fix newly attached files are not saved in drafts w/o editing any text (#1486202) - Added attachment upload indicator with parallel upload (#1486058) - Use default_charset for bodies of messages without charset definition (#1486187) - Password: added cPanel driver diff --git a/program/js/app.js b/program/js/app.js index d72f9eebb..68011bdda 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -2283,10 +2283,14 @@ function rcube_webmail() str += editor.getContent(); else str += $("[name='_message']").val(); - + + if (this.env.attachments) + for (var upload_id in this.env.attachments) + str += upload_id; + if (save) this.cmp_hash = str; - + return str; }; |