diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-12-26 12:14:34 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-12-26 12:14:34 +0100 |
commit | 66afd70b756a0637da3537e96f6bf6ce0a2c46e9 (patch) | |
tree | 97d57798ee3c4cd9ebca62f24f90d05f806cffda /program/lib/Roundcube/rcube_message.php | |
parent | 7ac94421bf85eb04c00c5ed05390e1ea0c6bcb0b (diff) |
Framework'ize html2text class
Diffstat (limited to 'program/lib/Roundcube/rcube_message.php')
-rw-r--r-- | program/lib/Roundcube/rcube_message.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_message.php b/program/lib/Roundcube/rcube_message.php index c45dbfcd0..9fea8382a 100644 --- a/program/lib/Roundcube/rcube_message.php +++ b/program/lib/Roundcube/rcube_message.php @@ -272,7 +272,7 @@ class rcube_message $out = $this->get_part_content($mime_id); // create instance of html2text class - $txt = new html2text($out); + $txt = new rcube_html2text($out); return $txt->get_text(); } } |