1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-07-31 05:40:24 +02:00

Merge pull request #673 from GregThib/patch-1

DansTonChatBridge: Update to follow DTC website changes
This commit is contained in:
Teromene
2018-04-19 20:58:01 +02:00
committed by GitHub

View File

@@ -15,8 +15,8 @@ class DansTonChatBridge extends BridgeAbstract {
foreach($html->find('div.item') as $element) {
$item = array();
$item['uri'] = $element->find('a', 0)->href;
$item['title'] = 'DansTonChat ' . $element->find('a', 1)->plaintext;
$item['content'] = $element->find('a', 0)->innertext;
$item['title'] = 'DansTonChat ' . html_entity_decode($element->find('h3 a', 0)->plaintext, ENT_QUOTES);
$item['content'] = $element->find('div.item-content a', 0)->innertext;
$this->items[] = $item;
}
}