[LesJoiesDuCode] decode html entities in title
This commit is contained in:
parent
497d3fd7aa
commit
33dea43bcf
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ class LesJoiesDuCodeBridge extends BridgeAbstract{
|
||||||
foreach($html->find('div.blog-post') as $element) {
|
foreach($html->find('div.blog-post') as $element) {
|
||||||
$item = new Item();
|
$item = new Item();
|
||||||
$temp = $element->find('h1 a', 0);
|
$temp = $element->find('h1 a', 0);
|
||||||
$titre = $temp->innertext;
|
$titre = html_entity_decode($temp->innertext);
|
||||||
$url = $temp->href;
|
$url = $temp->href;
|
||||||
|
|
||||||
$temp = $element->find('div.blog-post-content', 0);
|
$temp = $element->find('div.blog-post-content', 0);
|
||||||
|
|
Loading…
Reference in a new issue