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