Extend just_parse() method with conditions parsing

pull/52/head
Aleksander Machniak 12 years ago
parent 25bf00ecbc
commit b01d84d0f7

@ -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;
}

Loading…
Cancel
Save