summaryrefslogtreecommitdiff
path: root/program/steps
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2007-03-18 18:46:03 +0000
committerthomascube <thomas@roundcube.net>2007-03-18 18:46:03 +0000
commit86958f70d2970704e9ec6935d65e294c077143ea (patch)
tree43d9a57ffda90e2ff4f5adbe0ce64e335dc984a9 /program/steps
parent43a42dcf405c1667f0f39150ffaa8bbda7d9d1a0 (diff)
Improved contacts drop down; HTML output improvements; JS code cleanup
Diffstat (limited to 'program/steps')
-rw-r--r--program/steps/mail/func.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc
index 606c977a0..be9558fe1 100644
--- a/program/steps/mail/func.inc
+++ b/program/steps/mail/func.inc
@@ -1248,6 +1248,9 @@ function rcmail_mod_html_body($body, $container_id)
'</div>'),
$out);
+ // quote <? of php and xml files that are specified as text/html
+ $out = preg_replace(array('/<\?/', '/\?>/'), array('&lt;?', '?&gt;'), $out);
+
return $out;
}