mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-23 15:06:53 +00:00
strings are encoded twice in UTF-8
This commit is contained in:
parent
d18055720a
commit
3e541e5756
@ -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;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user