From: Andrew Dolgov Date: Fri, 5 May 2017 06:21:10 +0000 (+0300) Subject: feeditem_common: add get_element() X-Git-Tag: 17.12~199 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=40f4a7aa6b96fe2a40731c63a00fbfdf0b6e3023;p=tt-rss.git feeditem_common: add get_element() --- diff --git a/classes/feeditem/common.php b/classes/feeditem/common.php index 40251480..10c46854 100644 --- a/classes/feeditem/common.php +++ b/classes/feeditem/common.php @@ -21,6 +21,10 @@ abstract class FeedItem_Common extends FeedItem { } } + function get_element() { + return $this->elem; + } + function get_author() { $author = $this->elem->getElementsByTagName("author")->item(0);