mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-22 09:35:28 +03:00
[Castorus] fix: htmlentities bug (#2632)
This commit is contained in:
parent
60f1c46779
commit
bb81af086f
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ class CastorusBridge extends BridgeAbstract {
|
|||
if(!$title)
|
||||
returnServerError('Cannot find title!');
|
||||
|
||||
return htmlspecialchars(trim($title->plaintext));
|
||||
return trim($title->plaintext);
|
||||
}
|
||||
|
||||
// Extracts the url from an actitiy
|
||||
|
|
Loading…
Reference in a new issue