Skip to content
Snippets Groups Projects
Commit b87bd8ed authored by Andrew Dolgov's avatar Andrew Dolgov
Browse files

googlereaderimport: support summary element

parent a26f0c17
No related branches found
No related tags found
No related merge requests found
...@@ -108,6 +108,11 @@ class GoogleReaderImport extends Plugin { ...@@ -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'])) { if (is_array($item['content'])) {
$content = db_escape_string($this->link, $content = db_escape_string($this->link,
$item['content']['content'], false); $item['content']['content'], false);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment