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

ext/session: use STANDARD_MODULE_HEADER for module entry (#21066)

Now that the extension has no dependencies (#21060), no need to use
`STANDARD_MODULE_HEADER_EX`.
This commit is contained in:
Daniel Scherzer
2026-01-28 20:46:11 -08:00
committed by GitHub
parent 4d5b651e90
commit 22c618ee00

View File

@@ -3340,9 +3340,7 @@ static zend_result php_session_rfc1867_callback(unsigned int event, void *event_
}
zend_module_entry session_module_entry = {
STANDARD_MODULE_HEADER_EX,
NULL,
NULL,
STANDARD_MODULE_HEADER,
"session",
ext_functions,
PHP_MINIT(session), PHP_MSHUTDOWN(session),