strings are encoded twice in UTF-8

This commit is contained in:
Paul de Rosanbo 2016-01-21 12:14:14 +01:00
parent d18055720a
commit 3e541e5756

View File

@ -90,9 +90,9 @@ class ParuVenduImmoBridge extends BridgeAbstract
list($href) = explode('#', $element->href); list($href) = explode('#', $element->href);
$item = new \Item(); $item = new \Item();
$item->uri = $this->getURI().$href; $item->uri = utf8_decode($this->getURI().$href);
$item->title = $element->title; $item->title = utf8_decode($element->title);
$item->content = $img.$desc.$price; $item->content = utf8_decode($img.$desc.$price);
$this->items[] = $item; $this->items[] = $item;
} }