aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/Models/Entry.php2
-rw-r--r--lib/lib_phpQuery.php3
2 files changed, 2 insertions, 3 deletions
diff --git a/app/Models/Entry.php b/app/Models/Entry.php
index ab88d777a..243d557ac 100644
--- a/app/Models/Entry.php
+++ b/app/Models/Entry.php
@@ -484,7 +484,7 @@ class FreshRSS_Entry extends Minz_Model {
/**
* @var phpQueryObject @doc
*/
- $doc = phpQuery::newDocument($html);
+ $doc = phpQuery::newDocumentHTML($html);
if ($maxRedirs > 0) {
//Follow any HTML redirection
diff --git a/lib/lib_phpQuery.php b/lib/lib_phpQuery.php
index 1fabfcb6d..411aa120c 100644
--- a/lib/lib_phpQuery.php
+++ b/lib/lib_phpQuery.php
@@ -436,8 +436,7 @@ class DOMDocumentWrapper {
}
protected function isXML($markup) {
// return strpos($markup, '<?xml') !== false && stripos($markup, 'xhtml') === false;
- $head = substr($markup, 0, 100);
- return strpos($head, '<'.'?xml') !== false && stripos($head, '<html ') === false;
+ return strpos(substr($markup, 0, 100), '<'.'?xml') !== false;
}
protected function contentTypeToArray($contentType) {
$matches = explode(';', trim(strtolower($contentType)));