Fix url for par vendu, remove variable to fix the unread status of items
some rss clients (ex: liferea)
This commit is contained in:
parent
9ce826f78e
commit
52bdc39948
1 changed files with 3 additions and 1 deletions
|
@ -61,8 +61,10 @@ class ParuVenduImmoBridge extends BridgeAbstract
|
|||
|
||||
$price = $element->find('span.price')[0]->innertext;
|
||||
|
||||
list($href) = explode('#', $element->href);
|
||||
|
||||
$item = new \Item();
|
||||
$item->uri = $this->getURI().$element->href;
|
||||
$item->uri = $this->getURI().$href;
|
||||
$item->title = $element->title;
|
||||
$item->content = $img.$desc.$price;
|
||||
$this->items[] = $item;
|
||||
|
|
Loading…
Reference in a new issue