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