diff --git a/NEWS b/NEWS index 2c1722a2fb5f..06093ee225c1 100644 --- a/NEWS +++ b/NEWS @@ -30,6 +30,9 @@ PHP NEWS . Fixed bug GH-12392 (Segmentation fault on SoapClient::__getTypes). (nielsdos) +- XSL: + . Add missing module dependency. (nielsdos) + 12 Oct 2023, PHP 8.3.0RC4 - Core: diff --git a/ext/xsl/php_xsl.c b/ext/xsl/php_xsl.c index 5ecb7fd9b0b6..a4b6f5359911 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 };