mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-12 19:44:12 +02:00
[bridges] Change all occurrences of the Item object to array
This commit is contained in:
@@ -78,10 +78,10 @@ class ParuVenduImmoBridge extends BridgeAbstract
|
||||
|
||||
list($href) = explode('#', $element->href);
|
||||
|
||||
$item = new \Item();
|
||||
$item->uri = $this->uri.$href;
|
||||
$item->title = $element->title;
|
||||
$item->content = $img.$desc.$price;
|
||||
$item = array();
|
||||
$item['uri'] = $this->uri.$href;
|
||||
$item['title'] = $element->title;
|
||||
$item['content'] = $img.$desc.$price;
|
||||
$this->items[] = $item;
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user