Revert "strings are encoded twice in UTF-8"

This reverts commit 993f37616d73725745ab0098081149d566e7f3bb.
This commit is contained in:
Paul de Rosanbo 2016-01-21 12:21:30 +01:00
parent 2c79c5baaf
commit e89f0a5d6f

View File

@ -48,10 +48,11 @@ class ParuVenduImmoBridge extends BridgeAbstract
list($href) = explode('#', $element->href); list($href) = explode('#', $element->href);
$item = array();
$item['uri'] = self::URI.$href; $item = new \Item();
$item['title'] = $element->title; $item->uri = $this->getURI().$href;
$item['content'] = $img.$desc.$price; $item->title = $element->title;
$item->content = $img.$desc.$price;
$this->items[] = $item; $this->items[] = $item;