I changed the line :
PHP Code:
$rss2_output .= "<dt><strong><a href='" . trim($link) . "'>" . htmlspecialchars(trim($title)) . "</a></strong> - " . htmlspecialchars(trim($date)) ." <em>" . htmlspecialchars(trim($author)) . "</em></dt><dd>" . htmlspecialchars(trim($description)) . "</dd>";
to :
$rss2_output .= "<dt><strong><a href='" . trim($link) . "'>" . htmlspecialchars(trim($title)) . "</a></strong> - " . htmlspecialchars(trim($date)) ."
--------------- Added [DATE]1254279595[/DATE] at [TIME]1254279595[/TIME] ---------------
thanks I managed to remove descreption
the right code will be :
PHP Code:
$rss2_output .= "<dt><strong><a href='" . trim($link) . "'>" . htmlspecialchars(trim($title)) . "</a></strong> - " . htmlspecialchars(trim($date)) ." <em>" . htmlspecialchars(trim($author)) . "</em></dt>";
thanks lynne