Ignore invalid tokens when scraping an URL
This commit is contained in:
parent
aa7aa59def
commit
77f4a36d90
|
@ -3039,7 +3039,11 @@ class HTML5_TreeBuilder {
|
||||||
}
|
}
|
||||||
|
|
||||||
private function insertElement($token, $append = true) {
|
private function insertElement($token, $append = true) {
|
||||||
$el = $this->dom->createElementNS(self::NS_HTML, $token['name']);
|
$el = $this->dom->createElementNS(self::NS_HTML, $token['name']);
|
||||||
|
if ($el == false) {
|
||||||
|
logger('insertElement(): ignoring invalid token='.$token['name']);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if (!empty($token['attr'])) {
|
if (!empty($token['attr'])) {
|
||||||
foreach($token['attr'] as $attr) {
|
foreach($token['attr'] as $attr) {
|
||||||
|
|
Loading…
Reference in a new issue