summaryrefslogtreecommitdiff
path: root/modules/aggregator.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/aggregator.module')
-rw-r--r--modules/aggregator.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/aggregator.module b/modules/aggregator.module
index 275b22b61..df6a53ed7 100644
--- a/modules/aggregator.module
+++ b/modules/aggregator.module
@@ -861,8 +861,8 @@ function aggregator_parse_feed(&$data, $feed) {
/**
* Atom feeds have a CONTENT and/or SUMMARY tag instead of a DESCRIPTION tag
*/
- if ($item['CONTENT']) {
- $item['DESCRIPTION'] = $item['CONTENT'];
+ if ($item['CONTENT:ENCODED']) {
+ $item['DESCRIPTION'] = $item['CONTENT:ENCODED'];
}
else if ($item['SUMMARY']) {
$item['DESCRIPTION'] = $item['SUMMARY'];