mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-23 01:55:27 +03:00
[LeMondeInformatique] Remove encoding conversion
Was previously needed due to actual encoding on the page being inconsistent with encoding specified in <meta> tag
This commit is contained in:
parent
90e9c9962a
commit
8b173b8874
1 changed files with 2 additions and 2 deletions
|
@ -26,8 +26,8 @@ class LeMondeInformatiqueBridge extends FeedExpander {
|
|||
|
||||
//No response header sets the encoding, explicit conversion is needed or subsequent xml_encode() will fail
|
||||
$content_node = $article_html->find('div.col-primary, div.col-sm-9', 0);
|
||||
$item['content'] = utf8_encode($this->cleanArticle($content_node->innertext));
|
||||
$item['author'] = utf8_encode($article_html->find('div.author-infos', 0)->find('b', 0)->plaintext);
|
||||
$item['content'] = $this->cleanArticle($content_node->innertext);
|
||||
$item['author'] = $article_html->find('div.author-infos', 0)->find('b', 0)->plaintext;
|
||||
|
||||
return $item;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue