From: Andrew Dolgov Date: Fri, 5 Apr 2013 15:05:22 +0000 (+0400) Subject: googlereaderimport: support summary element X-Git-Tag: 1.7.9~60 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=b87bd8ed5655cdaa5962b9fa9fd31818e1cb2fc2;p=tt-rss.git googlereaderimport: support summary element --- diff --git a/plugins/googlereaderimport/init.php b/plugins/googlereaderimport/init.php index 8f14bdaa..ac7a872f 100644 --- a/plugins/googlereaderimport/init.php +++ b/plugins/googlereaderimport/init.php @@ -108,6 +108,11 @@ class GoogleReaderImport extends Plugin { } } + if (is_array($item['summary'])) { + $content = db_escape_string($this->link, + $item['summary']['content'], false); + } + if (is_array($item['content'])) { $content = db_escape_string($this->link, $item['content']['content'], false);