From 68aa7931734d750b6c4d1f5375bdddc3c03a6cda Mon Sep 17 00:00:00 2001 From: Niels Dossche <7771979+nielsdos@users.noreply.github.com> Date: Sun, 15 Oct 2023 00:13:57 +0200 Subject: [PATCH] Add missing module dependency for xsl This module cannot work without the DOM extension. Closes GH-12441. --- NEWS | 3 +++ ext/xsl/php_xsl.c | 1 + 2 files changed, 4 insertions(+) diff --git a/NEWS b/NEWS index 395cc3129f9a1..d697dae5ee6de 100644 --- a/NEWS +++ b/NEWS @@ -21,6 +21,9 @@ PHP NEWS . Fixed bug GH-12392 (Segmentation fault on SoapClient::__getTypes). (nielsdos) +- XSL: + . Add missing module dependency. (nielsdos) + 26 Oct 2023, PHP 8.1.25 - Core: diff --git a/ext/xsl/php_xsl.c b/ext/xsl/php_xsl.c index 1e98a6ce88bbe..6330ea5906535 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 };