mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
Don't need MSHUTDOWN either here
This commit is contained in:
@@ -40,7 +40,6 @@ extern zend_module_entry tidy_module_entry;
|
||||
#define TIDY_ATTR_ME(name, param) TIDY_METHOD_MAP(name, tam_ ##name, param)
|
||||
|
||||
PHP_MINIT_FUNCTION(tidy);
|
||||
PHP_MSHUTDOWN_FUNCTION(tidy);
|
||||
PHP_RINIT_FUNCTION(tidy);
|
||||
PHP_MINFO_FUNCTION(tidy);
|
||||
|
||||
|
||||
@@ -295,7 +295,7 @@ zend_module_entry tidy_module_entry = {
|
||||
"tidy",
|
||||
tidy_functions,
|
||||
PHP_MINIT(tidy),
|
||||
PHP_MSHUTDOWN(tidy),
|
||||
NULL,
|
||||
PHP_RINIT(tidy),
|
||||
NULL,
|
||||
PHP_MINFO(tidy),
|
||||
@@ -929,12 +929,6 @@ PHP_MINIT_FUNCTION(tidy)
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
PHP_MSHUTDOWN_FUNCTION(tidy)
|
||||
{
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
PHP_RINIT_FUNCTION(tidy)
|
||||
{
|
||||
if (INI_BOOL("tidy.clean_output") == TRUE) {
|
||||
|
||||
Reference in New Issue
Block a user