1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-23 09:32:15 -05:00

fix of issue #619 and other similar, error in JSLikeHTMLElement: node no longer exists.

This commit is contained in:
Maryana Rozhankivska 2014-07-09 16:56:52 +03:00
parent cc1ec61b85
commit c1aad6d574

View File

@ -1142,9 +1142,9 @@ class Readability
*/
protected function reinitBody() {
if (!isset($this->body->childNodes)) {
$this->body = $this->dom->createElement('body');
$this->body = $this->dom->createElement('body');
$this->body->innerHTML = $this->bodyCache;
}
$this->body->innerHTML = $this->bodyCache;
}
}