Fix regression where html code is sent as plain text (#1488649)

pull/195/head
Aleksander Machniak 10 years ago
parent 7fafb4d0d2
commit 4f3f3b47e2

@ -3595,6 +3595,11 @@ function rcube_webmail()
$(e.target).filter('select').val(props.html ? 'plain' : 'html');
}
if (result) {
// update internal format flag
$("input[name='_is_html']").val(props.html ? 1 : 0);
}
return result;
};

Loading…
Cancel
Save