From 83a4e859f8ae505f06c184eb60577529ff6c4be8 Mon Sep 17 00:00:00 2001 From: thomasb Date: Sat, 12 Apr 2008 13:54:45 +0000 Subject: Changed codebase to PHP5 with autoloader + added some new classes from the devel-vnext branch git-svn-id: https://svn.roundcube.net/trunk@1291 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/bin/html2text.php | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) (limited to 'roundcubemail/bin/html2text.php') diff --git a/roundcubemail/bin/html2text.php b/roundcubemail/bin/html2text.php index 7f74ac622..0f0e6ae14 100644 --- a/roundcubemail/bin/html2text.php +++ b/roundcubemail/bin/html2text.php @@ -1,21 +1,11 @@ get_text(); - -$phpver = explode('.', phpversion()); -$vernum = $phpver[0] . $phpver[1] . $phpver[2]; - -# html_entity_decode doesn't handle UTF character sets in PHP 4.x - -if (($vernum >= 500) && function_exists('html_entity_decode')) - print html_entity_decode($plaintext, ENT_COMPAT, 'UTF-8'); -else - print $plaintext; +print html_entity_decode($converter->get_text(), ENT_COMPAT, 'UTF-8'); ?> -- cgit v1.2.3