aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Entry.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Models/Entry.php')
-rw-r--r--app/Models/Entry.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/Models/Entry.php b/app/Models/Entry.php
index b5328df90..14eacbe78 100644
--- a/app/Models/Entry.php
+++ b/app/Models/Entry.php
@@ -401,6 +401,7 @@ class FreshRSS_Entry extends Minz_Model {
$refresh = preg_replace('/^[0-9.; ]*\s*(url\s*=)?\s*/i', '', trim($meta->getAttribute('content')));
$refresh = SimplePie_Misc::absolutize_url($refresh, $url);
if ($refresh != false && $refresh !== $url) {
+ phpQuery::unloadDocuments();
return self::getContentByParsing($refresh, $path, $attributes, $maxRedirs - 1);
}
}
@@ -408,7 +409,9 @@ class FreshRSS_Entry extends Minz_Model {
}
$content = $doc->find($path);
- return trim(sanitizeHTML($content->__toString(), $url));
+ $html = trim(sanitizeHTML($content->__toString(), $url));
+ phpQuery::unloadDocuments();
+ return $html;
} else {
throw new Exception();
}