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
DOMQueryResults::first now returns a new results set, so the loop in saveInnerBody fails.
DOMQueryResults::first
saveInnerBody
Need to change the line to for($node = $body[0]->firstChild; $node != null; $node = $node->nextSibling), add a count check too
for($node = $body[0]->firstChild; $node != null; $node = $node->nextSibling)
The text was updated successfully, but these errors were encountered:
89e74ee
No branches or pull requests
DOMQueryResults::first
now returns a new results set, so the loop insaveInnerBody
fails.Need to change the line to
for($node = $body[0]->firstChild; $node != null; $node = $node->nextSibling)
, add a count check tooThe text was updated successfully, but these errors were encountered: