We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Occasionally we get an error when this is parsing a site (for instance http://cheesenbiscuits.blogspot.co.uk/)
The error occurs in TreeBuilder.php on line 3160
A quick hack is to wrap this line a catch and carry on, although this should be considered a hack.
try{ $el = $this->dom->createElementNS(self::NS_HTML, $token['name']); }catch(Exception $e){ //var_dump($token); return; }
The text was updated successfully, but these errors were encountered:
WTF?
I've was experiencing the same problem and using try catch fixed it? :s
Sorry, something went wrong.
No branches or pull requests
Occasionally we get an error when this is parsing a site (for instance http://cheesenbiscuits.blogspot.co.uk/)
The error occurs in TreeBuilder.php on line 3160
A quick hack is to wrap this line a catch and carry on, although this should be considered a hack.
The text was updated successfully, but these errors were encountered: