aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/3rdparty
diff options
context:
space:
mode:
Diffstat (limited to 'inc/3rdparty')
-rwxr-xr-xinc/3rdparty/libraries/readability/Readability.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/3rdparty/libraries/readability/Readability.php b/inc/3rdparty/libraries/readability/Readability.php
index 9e77dc55..4fa3ba63 100755
--- a/inc/3rdparty/libraries/readability/Readability.php
+++ b/inc/3rdparty/libraries/readability/Readability.php
@@ -1142,9 +1142,9 @@ class Readability
1142 */ 1142 */
1143 protected function reinitBody() { 1143 protected function reinitBody() {
1144 if (!isset($this->body->childNodes)) { 1144 if (!isset($this->body->childNodes)) {
1145 $this->body = $this->dom->createElement('body'); 1145 $this->body = $this->dom->createElement('body');
1146 $this->body->innerHTML = $this->bodyCache;
1146 } 1147 }
1147 $this->body->innerHTML = $this->bodyCache;
1148 } 1148 }
1149 1149
1150} 1150}