1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.1' into PHP-8.2

* PHP-8.1:
  Add missing module dependency for xsl
This commit is contained in:
Niels Dossche
2023-10-15 21:53:37 +02:00
2 changed files with 4 additions and 0 deletions

3
NEWS
View File

@@ -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:

View File

@@ -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
};