diff --git a/bridges/FierPandaBridge.php b/bridges/FierPandaBridge.php index 5c574fc2..b2e9d9cc 100644 --- a/bridges/FierPandaBridge.php +++ b/bridges/FierPandaBridge.php @@ -12,7 +12,7 @@ class FierPandaBridge extends BridgeAbstract { foreach($html->find('div.container-content article') as $element) { $item = array(); $item['uri'] = $this->getURI().$element->find('a', 0)->href; - $item['title'] = trim($element->find('h2 a', 0)->innertext); + $item['title'] = trim($element->find('h1 a', 0)->innertext); // Remove the link at the end of the article $element->find('p a', 0)->outertext = ''; $item['content'] = $element->find('p', 0)->innertext; diff --git a/bridges/Sexactu.php b/bridges/SexactuBridge.php similarity index 96% rename from bridges/Sexactu.php rename to bridges/SexactuBridge.php index e78098bb..9981e2bc 100644 --- a/bridges/Sexactu.php +++ b/bridges/SexactuBridge.php @@ -1,9 +1,10 @@ getURI().$this->getInput('category').'rss.xml'; + $url = $this->getURI().$this->getInput('category').'/rss.xml'; $html = $this->getSimpleHTMLDOM($url) or $this->returnServerError('Could not request Zone Telechargement: '.$url); foreach($html->find('item') as $element) {