--- C:/Documents and Settings/jdefay/Desktop/temp/aggregator.module Fri Feb 27 11:36:26 2009 +++ C:/Documents and Settings/jdefay/Desktop/temp/aggregator.module-6.10BAK Wed Jan 14 13:36:16 2009 @@ -737,14 +737,8 @@ // Resolve the item's title. If no title is found, we use up to 40 // characters of the description ending at a word boundary but not // splitting potential entities. - // If available we use the PHP function htmlspecialchars_decode (PHP 5.1.0 and greater) - // to remove any html formatting. If the PHP function - // is not installed we use the default setting - if ((function_exists('htmlspecialchars_decode') && (!empty($item['TITLE'])))) { - $title = htmlspecialchars_decode($item['TITLE'], ENT_QUOTES); - } - elseif (!empty($item['TITLE'])) { - $title = $item['TITLE']; + if (!empty($item['TITLE'])) { + $title = $item['TITLE']; } elseif (!empty($item['DESCRIPTION'])) { $title = preg_replace('/^(.*)[^\w;&].*?$/', "\\1", truncate_utf8($item['DESCRIPTION'], 40));