[bridges] Fix all calls to get_cached

This commit is contained in:
logmanoriginal 2016-08-28 19:38:34 +02:00
parent 5f3d28f3a6
commit a7b3519c35
6 changed files with 6 additions and 6 deletions

View file

@ -25,7 +25,7 @@ class FreenewsBridge extends RssExpander {
}
// now load that uri from cache
$this->debugMessage("now loading page ".$item['uri']);
$articlePage = str_get_html($this->get_cached($item['uri']));
$articlePage = $this->get_cached($item['uri']);
$content = $articlePage->find('.post-container', 0);
$item['content'] = $content->innertext;