better support for atom content type xhtml
This commit is contained in:
parent
c594eca0de
commit
2700440178
|
@ -41,9 +41,8 @@ class FeedItem_Atom extends FeedItem_Common {
|
||||||
$content = $this->elem->getElementsByTagName("content")->item(0);
|
$content = $this->elem->getElementsByTagName("content")->item(0);
|
||||||
|
|
||||||
if ($content) {
|
if ($content) {
|
||||||
if ($content->hasChildNodes()) {
|
if ($content->hasAttribute('type')) {
|
||||||
|
if ($content->getAttribute('type') == 'xhtml') {
|
||||||
if ($content->getElementsByTagName("*")->length > 1) {
|
|
||||||
return $this->doc->saveXML($content->firstChild->nextSibling);
|
return $this->doc->saveXML($content->firstChild->nextSibling);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -53,13 +52,20 @@ class FeedItem_Atom extends FeedItem_Common {
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_description() {
|
function get_description() {
|
||||||
$summary = $this->elem->getElementsByTagName("summary")->item(0);
|
$content = $this->elem->getElementsByTagName("summary")->item(0);
|
||||||
|
|
||||||
if ($summary) {
|
if ($content) {
|
||||||
return $summary->nodeValue;
|
if ($content->hasAttribute('type')) {
|
||||||
|
if ($content->getAttribute('type') == 'xhtml') {
|
||||||
|
return $this->doc->saveXML($content->firstChild->nextSibling);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return $content->nodeValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
function get_categories() {
|
function get_categories() {
|
||||||
$categories = $this->elem->getElementsByTagName("category");
|
$categories = $this->elem->getElementsByTagName("category");
|
||||||
$cats = array();
|
$cats = array();
|
||||||
|
|
Loading…
Reference in New Issue