Browse Source

[FootitoBridge] code simplification

Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
Pierre Mazière 7 years ago
parent
commit
0d9be1f510
1 changed files with 2 additions and 1 deletions
  1. 2 1
      bridges/FootitoBridge.php

+ 2 - 1
bridges/FootitoBridge.php

@@ -7,7 +7,8 @@ class FootitoBridge extends BridgeAbstract{
 	public $description = "Footito";
 
     public function collectData(){
-        $html = $this->getSimpleHTMLDOM('http://www.footito.fr/') or $this->returnServerError('Could not request Footito.');
+        $html = $this->getSimpleHTMLDOM($this->uri)
+            or $this->returnServerError('Could not request Footito.');
 
         foreach($html->find('div.post') as $element) {
             $item = array();