summaryrefslogtreecommitdiff
path: root/program/include/rcmail_output_html.php
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2012-12-11 12:02:45 +0100
committerAleksander Machniak <alec@alec.pl>2012-12-11 12:02:45 +0100
commitb01d84d0f7c8b29c9dc52c717708f28a72ecf08e (patch)
tree1dfdea271ba0899ae9d512eb51b1a449bef26e4b /program/include/rcmail_output_html.php
parent25bf00ecbc2cab20ce66845513980b83b03f7c49 (diff)
Extend just_parse() method with conditions parsing
Diffstat (limited to 'program/include/rcmail_output_html.php')
-rw-r--r--program/include/rcmail_output_html.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/program/include/rcmail_output_html.php b/program/include/rcmail_output_html.php
index 1290e173e..76342c245 100644
--- a/program/include/rcmail_output_html.php
+++ b/program/include/rcmail_output_html.php
@@ -670,7 +670,10 @@ class rcmail_output_html extends rcmail_output
*/
public function just_parse($input)
{
- return $this->parse_xml($input);
+ $input = $this->parse_conditions($input);
+ $input = $this->parse_xml($input);
+
+ return $input;
}