forked from blallo/rss-bridge
Merge pull request #673 from GregThib/patch-1
DansTonChatBridge: Update to follow DTC website changes
This commit is contained in:
commit
2390fb58b3
1 changed files with 2 additions and 2 deletions
|
@ -15,8 +15,8 @@ class DansTonChatBridge extends BridgeAbstract {
|
||||||
foreach($html->find('div.item') as $element) {
|
foreach($html->find('div.item') as $element) {
|
||||||
$item = array();
|
$item = array();
|
||||||
$item['uri'] = $element->find('a', 0)->href;
|
$item['uri'] = $element->find('a', 0)->href;
|
||||||
$item['title'] = 'DansTonChat ' . $element->find('a', 1)->plaintext;
|
$item['title'] = 'DansTonChat ' . html_entity_decode($element->find('h3 a', 0)->plaintext, ENT_QUOTES);
|
||||||
$item['content'] = $element->find('a', 0)->innertext;
|
$item['content'] = $element->find('div.item-content a', 0)->innertext;
|
||||||
$this->items[] = $item;
|
$this->items[] = $item;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue