summaryrefslogtreecommitdiff
path: root/program/steps/mail/compose.inc
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-05-22 11:07:20 +0200
committerAleksander Machniak <alec@alec.pl>2012-05-22 11:07:20 +0200
commit0a1dd5b073f0dfc42439ab168246ae0ae6921414 (patch)
tree4967fccc177fe289e4311cc55477559cb32d1969 /program/steps/mail/compose.inc
parent5a575b7eb08fb9f254f46eb340cbedb0c839446e (diff)
Add is_escaped attribute for html_select and html_textarea (#1488485)
Diffstat (limited to 'program/steps/mail/compose.inc')
-rw-r--r--program/steps/mail/compose.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc
index 47d97faad..374a87649 100644
--- a/program/steps/mail/compose.inc
+++ b/program/steps/mail/compose.inc
@@ -772,6 +772,7 @@ function rcmail_compose_body($attrib)
if ($isHtml) {
$MESSAGE_BODY = htmlentities($MESSAGE_BODY, ENT_NOQUOTES, RCMAIL_CHARSET);
$attrib['class'] = 'mce_editor';
+ $attrib['is_escaped'] = true;
$textarea = new html_textarea($attrib);
$out .= $textarea->show($MESSAGE_BODY);
}