mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-31 03:50:13 +02:00
[bridges] Change all occurrences of the Item object to array
This commit is contained in:
@@ -30,11 +30,11 @@ class VineBridge extends BridgeAbstract {
|
||||
$video->controls = "true";
|
||||
$element->find('h2', 0)->outertext = '';
|
||||
|
||||
$item = new \Item();
|
||||
$item->uri = $a->href;
|
||||
$item->timestamp = $time;
|
||||
$item->title = $a->plaintext;
|
||||
$item->content = $element;
|
||||
$item = array();
|
||||
$item['uri'] = $a->href;
|
||||
$item['timestamp'] = $time;
|
||||
$item['title'] = $a->plaintext;
|
||||
$item['content'] = $element;
|
||||
|
||||
$this->items[] = $item;
|
||||
}
|
||||
|
Reference in New Issue
Block a user