Fix issue where signature wasn't re-added on draft compose (#1488322)

This commit is contained in:
Aleksander Machniak
2012-05-08 13:29:26 +02:00
parent e6e0d410ac
commit 837de85a15
2 changed files with 3 additions and 1 deletions

View File

@@ -1,6 +1,8 @@
CHANGELOG Roundcube Webmail
===========================
- Fix issue where signature wasn't re-added on draft compose (#1488322)
- Update to TinyMCE 3.5 (#1488459)
- Fixed multi-threaded autocompletion when number of threads > number of sources
- Allow to configure the number of values allowed for each LDAP attribute

View File

@@ -2988,7 +2988,7 @@ function rcube_webmail()
this.set_caret_pos(input_message, this.env.top_posting ? 0 : $(input_message).val().length);
// add signature according to selected identity
// if we have HTML editor, signature is added in callback
if (input_from.prop('type') == 'select-one' && $("input[name='_draft_saveid']").val() == '') {
if (input_from.prop('type') == 'select-one') {
this.change_identity(input_from[0]);
}
}