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

Merge branch 'PHP-8.2' into PHP-8.3

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

3
NEWS
View File

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

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