- Fix newly attached files are not saved in drafts w/o editing any text (#1486202)

release-0.6
alecpl 15 years ago
parent 6fff3c8e02
commit b4d940b112

@ -1,6 +1,7 @@
CHANGELOG RoundCube Webmail 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) - Added attachment upload indicator with parallel upload (#1486058)
- Use default_charset for bodies of messages without charset definition (#1486187) - Use default_charset for bodies of messages without charset definition (#1486187)
- Password: added cPanel driver - Password: added cPanel driver

@ -2283,10 +2283,14 @@ function rcube_webmail()
str += editor.getContent(); str += editor.getContent();
else else
str += $("[name='_message']").val(); str += $("[name='_message']").val();
if (this.env.attachments)
for (var upload_id in this.env.attachments)
str += upload_id;
if (save) if (save)
this.cmp_hash = str; this.cmp_hash = str;
return str; return str;
}; };

Loading…
Cancel
Save