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 3e541e5756
commit 9df0282491

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 = utf8_decode($this->getURI().$href); $item->uri = $this->getURI().$href;
$item->title = utf8_decode($element->title); $item->title = $element->title;
$item->content = utf8_decode($img.$desc.$price); $item->content = $img.$desc.$price;
$this->items[] = $item; $this->items[] = $item;
} }