forked from blallo/rss-bridge
[Webfail] Fix titles with single quotes
This commit is contained in:
parent
5662dff5cb
commit
aa2442602a
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ class WebfailBridge extends BridgeAbstract {
|
|||
|
||||
private function fixTitle($title){
|
||||
// This fixes titles that include umlauts (in German language)
|
||||
return html_entity_decode($title, ENT_COMPAT | ENT_HTML401, 'UTF-8');
|
||||
return html_entity_decode($title, ENT_QUOTES | ENT_HTML401, 'UTF-8');
|
||||
}
|
||||
|
||||
private function getVideoId($onclick){
|
||||
|
|
Loading…
Reference in a new issue