summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2007-03-18 18:46:03 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2007-03-18 18:46:03 +0000
commit542100f52706cb2b433250d9d8d10c039b8becaa (patch)
tree2a9dfa70cab839af13fccc2952ff4b724867911a /roundcubemail/program/steps
parent63b816e27263b8fb45aee0273e8cfe822f7428c1 (diff)
Improved contacts drop down; HTML output improvements; JS code cleanup
git-svn-id: https://svn.roundcube.net/trunk@510 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps')
-rw-r--r--roundcubemail/program/steps/mail/func.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/roundcubemail/program/steps/mail/func.inc b/roundcubemail/program/steps/mail/func.inc
index 606c977a0..be9558fe1 100644
--- a/roundcubemail/program/steps/mail/func.inc
+++ b/roundcubemail/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;
}