Updated FeedExpander (markdown)

pmaziere 2016-09-17 21:48:07 +02:00
parent df2053893d
commit 4df0a7f4db

@ -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;
}
```