forked from blallo/rss-bridge
categories added + fixed html entities
This commit is contained in:
parent
642e4173d1
commit
796c14758f
1 changed files with 2 additions and 2 deletions
|
@ -254,7 +254,7 @@ class LeBonCoinBridge extends BridgeAbstract{
|
||||||
|
|
||||||
$item = new \Item();
|
$item = new \Item();
|
||||||
$item->uri = $element->href;
|
$item->uri = $element->href;
|
||||||
$title = $element->getAttribute('title');
|
$title = html_entity_decode($element->getAttribute('title'));
|
||||||
$content_image = $element->find('div.item_image', 0)->find('.lazyload', 0);
|
$content_image = $element->find('div.item_image', 0)->find('.lazyload', 0);
|
||||||
|
|
||||||
if($content_image !== NULL) {
|
if($content_image !== NULL) {
|
||||||
|
@ -277,7 +277,7 @@ class LeBonCoinBridge extends BridgeAbstract{
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getName(){
|
public function getName(){
|
||||||
return 'LeBonCoinDev';
|
return 'LeBonCoin';
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getURI(){
|
public function getURI(){
|
||||||
|
|
Loading…
Reference in a new issue