From 6af59315359fca0ede749be10e8e603324e1fcdd Mon Sep 17 00:00:00 2001 From: thomascube Date: Thu, 22 Dec 2011 18:01:44 +0000 Subject: [PATCH] Allow (escaped) html tags in roundcube special tag attributes --- program/include/rcube_template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php index f65080373..95f92a587 100755 --- a/program/include/rcube_template.php +++ b/program/include/rcube_template.php @@ -661,7 +661,7 @@ class rcube_template extends rcube_html_page */ private function parse_xml($input) { - return preg_replace_callback('/]+)>/Ui', array($this, 'xml_command'), $input); + return preg_replace_callback('/]|\\\\>)+)(?/Ui', array($this, 'xml_command'), $input); }