You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was seeing errors when trying to access revisions. Craft Support said this error is coming from Preparse.
InvalidArgumentException
The current node list is empty.
in /home/domains/cenic.org/craft/vendor/symfony/dom-crawler/Crawler.phpat line 602
593594595596597598599600601602603604605606607608609610611 * @throws \InvalidArgumentException When current node is empty
*/
public function html(?string $default = null): string
{
if (!$this->nodes) {
if (null !== $default) {
return $default;
}
throw new \InvalidArgumentException('The current node list is empty.');
}
$node = $this->getNode(0);
$owner = $node->ownerDocument;
if ($this->html5Parser && '<!DOCTYPE html>' === $owner->saveXML($owner->childNodes[0])) {
$owner = $this->html5Parser;
}
The text was updated successfully, but these errors were encountered:
I was seeing errors when trying to access revisions. Craft Support said this error is coming from Preparse.
InvalidArgumentException
The current node list is empty.
in /home/domains/cenic.org/craft/vendor/symfony/dom-crawler/Crawler.phpat line 602
593594595596597598599600601602603604605606607608609610611 * @throws \InvalidArgumentException When current node is empty
*/
public function html(?string $default = null): string
{
if (!$this->nodes) {
if (null !== $default) {
return $default;
}
The text was updated successfully, but these errors were encountered: