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

master
Andrew Dolgov 17 years ago
parent af9964d3b9
commit 4af7a36aa7

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

Loading…
Cancel
Save