-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,6 +100,12 @@ public function getInlineStyles(\DOMElement $element) | |
*/ | ||
protected function createDomDocumentFromHtml($html) | ||
{ | ||
$html = trim($html); | ||
if (strstr('<?xml', $html) !== 0) { | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
techi602
Author
Contributor
|
||
$xmlHeader = '<?xml encoding="utf-8" ?>'; | ||
$html = $xmlHeader . $html; | ||
} | ||
|
||
$document = new \DOMDocument('1.0', 'UTF-8'); | ||
$internalErrors = libxml_use_internal_errors(true); | ||
$document->loadHTML($html); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@techi602 Shouldn't this be
strpos
(orstripos
)?