From 9d41c83c02cc13a77dfbabb2f88bc828f0de8099 Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Tue, 2 Aug 2016 11:24:24 +0200 Subject: [PATCH] Remove nested function BastaExtractContent This fixes error "Using $this when not in object context" The nested function BastaExtractContent was attempting to access $this even though the function is declared as nested function within a class function and not as a class function itself. Thus BastaExtractContent had no access to the object instance $this. --- bridges/BastaBridge.php | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/bridges/BastaBridge.php b/bridges/BastaBridge.php index 01f7611b..ff2b26a8 100644 --- a/bridges/BastaBridge.php +++ b/bridges/BastaBridge.php @@ -7,19 +7,12 @@ class BastaBridge extends BridgeAbstract{ $this->name = "Bastamag Bridge"; $this->uri = "http://www.bastamag.net/"; $this->description = "Returns the newest articles."; - $this->update = "2014-05-25"; + $this->update = "2016-08-02"; } public function collectData(array $param){ - - - function BastaExtractContent($url) { - $html2 = $this->file_get_html($url); - $text = $html2->find('div.texte', 0)->innertext; - return $text; - } $html = $this->file_get_html('http://www.bastamag.net/spip.php?page=backend') or $this->returnError('Could not request Bastamag.', 404); $limit = 0; @@ -29,7 +22,7 @@ class BastaBridge extends BridgeAbstract{ $item->title = $element->find('title', 0)->innertext; $item->uri = $element->find('guid', 0)->plaintext; $item->timestamp = strtotime($element->find('pubDate', 0)->plaintext); - $item->content = BastaExtractContent($item->uri); + $item->content = $this->file_get_html($item->uri)->find('div.texte', 0)->innertext; $this->items[] = $item; $limit++; }