[Webfail] Fix titles with umlauts

This commit is contained in:
logmanoriginal 2016-10-05 18:56:54 +02:00
parent 9e209608c8
commit 5662dff5cb

View file

@ -64,7 +64,7 @@ class WebfailBridge extends BridgeAbstract {
$news = $html->find('#main', 0)->find('a.wf-list-news'); $news = $html->find('#main', 0)->find('a.wf-list-news');
foreach($news as $element){ foreach($news as $element){
$item = array(); $item = array();
$item['title'] = $element->find('div.wf-news-title', 0)->innertext; $item['title'] = $this->fixTitle($element->find('div.wf-news-title', 0)->innertext);
$item['uri'] = $this->getURI() . $element->href; $item['uri'] = $this->getURI() . $element->href;
$img = $element->find('img.wf-image', 0)->src; $img = $element->find('img.wf-image', 0)->src;
@ -97,7 +97,7 @@ class WebfailBridge extends BridgeAbstract {
$articles = $html->find('article'); $articles = $html->find('article');
foreach($articles as $article){ foreach($articles as $article){
$item = array(); $item = array();
$item['title'] = $article->find('a', 1)->innertext; $item['title'] = $this->fixTitle($article->find('a', 1)->innertext);
// Webfail shares videos or images // Webfail shares videos or images
if(!is_null($article->find('img.wf-image', 0))){ // Image type if(!is_null($article->find('img.wf-image', 0))){ // Image type
@ -121,6 +121,11 @@ 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');
}
private function getVideoId($onclick){ private function getVideoId($onclick){
return substr($onclick, 21, 11); return substr($onclick, 21, 11);
} }