From 4df0a7f4db50802f04087dff2dd92856e7d080d6 Mon Sep 17 00:00:00 2001 From: pmaziere Date: Sat, 17 Sep 2016 21:48:07 +0200 Subject: [PATCH] Updated FeedExpander (markdown) --- FeedExpander.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FeedExpander.md b/FeedExpander.md index f5df086..9b4bc80 100644 --- a/FeedExpander.md +++ b/FeedExpander.md @@ -24,10 +24,10 @@ you should first call the parent function to initialize the item, then apply the ```PHP protected function parseItem($feedItem){ - $item = parent::parseItem($feedItem); - $item['content'] = str_replace('rssbridge','RSS-Bridge',$feedItem->content); + $item = parent::parseItem($feedItem); + $item['content'] = str_replace('rssbridge','RSS-Bridge',$feedItem->content); - return $item; + return $item; } ```