Bug #253775 --> When parsing RSS 2.0 feeds, parse the content:encoded tag for each feed.

Patch by Myk.
This commit is contained in:
scott%scott-macgregor.org 2004-08-03 05:30:43 +00:00
Родитель 1aaef95bce
Коммит 09135f8254
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -250,6 +250,10 @@ Feed.prototype.parseAsRSS2 = function() {
|| itemNode.getElementsByTagName("date")[0])
|| item.date;
var content = getNodeValue(itemNode.getElementsByTagNameNS(RSS_CONTENT_NS, "encoded")[0]);
if (content)
item.content = content;
this.itemsToStore[i] = item;
}