diff --git a/NEWS b/NEWS index c1f825c11f9..87812c65bdd 100644 --- a/NEWS +++ b/NEWS @@ -24,6 +24,9 @@ PHP NEWS . Fixed bug GH-12392 (Segmentation fault on SoapClient::__getTypes). (nielsdos) +- XSL: + . Add missing module dependency. (nielsdos) + 26 Oct 2023, PHP 8.2.12 - Core: diff --git a/ext/xsl/php_xsl.c b/ext/xsl/php_xsl.c index 0c9029c9601..f2c0047c3cf 100644 --- a/ext/xsl/php_xsl.c +++ b/ext/xsl/php_xsl.c @@ -29,6 +29,7 @@ static zend_object_handlers xsl_object_handlers; static const zend_module_dep xsl_deps[] = { ZEND_MOD_REQUIRED("libxml") + ZEND_MOD_REQUIRED("dom") ZEND_MOD_END };