mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00
Another attempt at fixing 8036
This commit is contained in:
parent
56094458b7
commit
aa2d9117d9
2 changed files with 8 additions and 6 deletions
|
@ -34,9 +34,11 @@ extern zend_module_entry sablot_module_entry;
|
||||||
|
|
||||||
/* Module functions */
|
/* Module functions */
|
||||||
PHP_MINIT_FUNCTION(sablot);
|
PHP_MINIT_FUNCTION(sablot);
|
||||||
PHP_MSHUTDOWN_FUNCTION(sablot);
|
|
||||||
PHP_MINFO_FUNCTION(sablot);
|
PHP_MINFO_FUNCTION(sablot);
|
||||||
|
|
||||||
|
/* Request functions */
|
||||||
|
PHP_RSHUTDOWN_FUNCTION(sablot);
|
||||||
|
|
||||||
/* Output transformation functions */
|
/* Output transformation functions */
|
||||||
PHP_FUNCTION(xslt_output_begintransform);
|
PHP_FUNCTION(xslt_output_begintransform);
|
||||||
PHP_FUNCTION(xslt_output_endtransform);
|
PHP_FUNCTION(xslt_output_endtransform);
|
||||||
|
|
|
@ -160,9 +160,9 @@ zend_module_entry sablot_module_entry = {
|
||||||
"sablot",
|
"sablot",
|
||||||
sablot_functions,
|
sablot_functions,
|
||||||
PHP_MINIT(sablot),
|
PHP_MINIT(sablot),
|
||||||
PHP_MSHUTDOWN(sablot),
|
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
|
PHP_RSHUTDOWN(sablot),
|
||||||
PHP_MINFO(sablot),
|
PHP_MINFO(sablot),
|
||||||
STANDARD_MODULE_PROPERTIES
|
STANDARD_MODULE_PROPERTIES
|
||||||
};
|
};
|
||||||
|
@ -180,7 +180,7 @@ PHP_MINIT_FUNCTION(sablot)
|
||||||
return SUCCESS;
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
PHP_MSHUTDOWN_FUNCTION(sablot)
|
PHP_RSHUTDOWN_FUNCTION(sablot)
|
||||||
{
|
{
|
||||||
SABLOTLS_FETCH();
|
SABLOTLS_FETCH();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue