mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-04 01:55:21 +02:00
TwitterBridge*: fix HTML entities in title
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
parent
4b179144c1
commit
f05bd15393
3 changed files with 3 additions and 3 deletions
|
@ -71,7 +71,7 @@ class TwitterBridgeCleanExtended extends BridgeAbstract{
|
|||
$item->content = '♻ @' . $item->username . ': ' . $item->content;
|
||||
}
|
||||
}
|
||||
$item->title = $item->content;
|
||||
$item->title = html_entity_decode($item->content,ENT_QUOTES,'UTF-8');
|
||||
$this->items[] = $item;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue