From b01d84d0f7c8b29c9dc52c717708f28a72ecf08e Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Tue, 11 Dec 2012 06:02:45 -0500 Subject: [PATCH] Extend just_parse() method with conditions parsing --- program/include/rcmail_output_html.php | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/program/include/rcmail_output_html.php b/program/include/rcmail_output_html.php index 1290e17..76342c2 100644 --- a/program/include/rcmail_output_html.php +++ b/program/include/rcmail_output_html.php @@ -670,7 +670,10 @@ */ public function just_parse($input) { - return $this->parse_xml($input); + $input = $this->parse_conditions($input); + $input = $this->parse_xml($input); + + return $input; } -- Gitblit v1.9.1