simplepie: import entry content when possible, not just description (closes #192)

This commit is contained in:
Andrew Dolgov 2008-02-20 06:43:41 +01:00
parent af9964d3b9
commit 4af7a36aa7
1 changed files with 2 additions and 1 deletions

View File

@ -848,7 +848,8 @@
$entry_link = strip_tags($entry_link);
if ($use_simplepie) {
$entry_content = $item->get_description();
$entry_content = $item->get_content();
if (!$entry_content) $entry_content = $item->get_description();
} else {
$entry_content = $item["content:escaped"];