[bridges] fix typo in getSimpleHTMLDOM call

Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
Pierre Mazière 2016-08-21 19:48:23 +02:00
parent 181be164e0
commit 8e32142ce5
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ class MsnMondeBridge extends BridgeAbstract{
}
private function MsnMondeExtractContent($url, &$item) {
$html2 = $this->getSimpleHTLDOM($url);
$html2 = $this->getSimpleHTMLDOM($url);
$item->content = $html2->find('#content', 0)->find('article', 0)->find('section', 0)->plaintext;
$item->timestamp = strtotime($html2->find('.authorinfo-txt', 0)->find('time', 0)->datetime);
}