summaryrefslogtreecommitdiff
path: root/program/steps/mail/func.inc
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2014-08-30 12:33:42 +0200
committerAleksander Machniak <alec@alec.pl>2014-08-30 12:33:42 +0200
commit9cc5a522df25d7f98e578dc483e0ff067b6c1ded (patch)
tree1d469d94d86833909a1b19c1083b10937ff54084 /program/steps/mail/func.inc
parentfec4f240e52dcfe4776e39a16e3a83aedd8f24f5 (diff)
Fix so rcube_text2html class does not depend on rcmail_string_replacer
Diffstat (limited to 'program/steps/mail/func.inc')
-rw-r--r--program/steps/mail/func.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc
index 41fe28e7a..a7c483bba 100644
--- a/program/steps/mail/func.inc
+++ b/program/steps/mail/func.inc
@@ -920,7 +920,7 @@ function rcmail_print_body($part, $p = array())
*/
function rcmail_plain_body($body, $flowed = false)
{
- $options = array('flowed' => $flowed, 'wrap' => !$flowed);
+ $options = array('flowed' => $flowed, 'wrap' => !$flowed, 'replacer' => 'rcmail_string_replacer');
$text2html = new rcube_text2html($body, false, $options);
$body = $text2html->get_html();