From edc130910f0b059dab334060a4e6109bd2e27489 Mon Sep 17 00:00:00 2001 From: Niels Dossche <7771979+nielsdos@users.noreply.github.com> Date: Wed, 29 May 2024 18:50:07 +0200 Subject: [PATCH] Fix build --- ext/dom/document.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/dom/document.c b/ext/dom/document.c index 1b0bfda7f6e..588aabda397 100644 --- a/ext/dom/document.c +++ b/ext/dom/document.c @@ -816,7 +816,7 @@ PHP_METHOD(DOMDocument, importNode) /* If there is no root, the namespace cannot be attached to it, so we have to attach it to the old list. */ if (nsptr != NULL && root == NULL) { - dom_set_old_ns(nodep->doc, nsptr); + php_libxml_set_old_ns(nodep->doc, nsptr); } } retnodep->ns = nsptr;