Skip to content

Commit 68aa793

Browse files
committed
Add missing module dependency for xsl
This module cannot work without the DOM extension. Closes GH-12441.
1 parent 0217be4 commit 68aa793

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

NEWS

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ PHP NEWS
2121
. Fixed bug GH-12392 (Segmentation fault on SoapClient::__getTypes).
2222
(nielsdos)
2323

24+
- XSL:
25+
. Add missing module dependency. (nielsdos)
26+
2427
26 Oct 2023, PHP 8.1.25
2528

2629
- Core:

ext/xsl/php_xsl.c

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ static zend_object_handlers xsl_object_handlers;
2929

3030
static const zend_module_dep xsl_deps[] = {
3131
ZEND_MOD_REQUIRED("libxml")
32+
ZEND_MOD_REQUIRED("dom")
3233
ZEND_MOD_END
3334
};
3435

0 commit comments

Comments
 (0)