Skip to content

Commit 428ecf4

Browse files
committed
Merge branch 'PHP-8.1' into PHP-8.2
* PHP-8.1: Add missing module dependency for xsl
2 parents c776f79 + 68aa793 commit 428ecf4

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
@@ -24,6 +24,9 @@ PHP NEWS
2424
. Fixed bug GH-12392 (Segmentation fault on SoapClient::__getTypes).
2525
(nielsdos)
2626

27+
- XSL:
28+
. Add missing module dependency. (nielsdos)
29+
2730
26 Oct 2023, PHP 8.2.12
2831

2932
- 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)