Fix url for par vendu, remove variable to fix the unread status of items

some rss clients (ex: liferea)
This commit is contained in:
Paul de Rosanbo 2015-10-23 16:38:37 +02:00
parent 9ce826f78e
commit 52bdc39948

View file

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