Ignore invalid tokens when scraping an URL

This commit is contained in:
Olaf Conradi 2013-03-03 21:41:27 +01:00
parent aa7aa59def
commit 77f4a36d90
1 changed files with 5 additions and 1 deletions

View File

@ -3040,6 +3040,10 @@ class HTML5_TreeBuilder {
private function insertElement($token, $append = true) {
$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'])) {
foreach($token['attr'] as $attr) {