mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Don't need MSHUTDOWN either here
This commit is contained in:
parent
d8ad6ff49b
commit
bf7cb1179a
2 changed files with 1 additions and 8 deletions
|
@ -40,7 +40,6 @@ extern zend_module_entry tidy_module_entry;
|
||||||
#define TIDY_ATTR_ME(name, param) TIDY_METHOD_MAP(name, tam_ ##name, param)
|
#define TIDY_ATTR_ME(name, param) TIDY_METHOD_MAP(name, tam_ ##name, param)
|
||||||
|
|
||||||
PHP_MINIT_FUNCTION(tidy);
|
PHP_MINIT_FUNCTION(tidy);
|
||||||
PHP_MSHUTDOWN_FUNCTION(tidy);
|
|
||||||
PHP_RINIT_FUNCTION(tidy);
|
PHP_RINIT_FUNCTION(tidy);
|
||||||
PHP_MINFO_FUNCTION(tidy);
|
PHP_MINFO_FUNCTION(tidy);
|
||||||
|
|
||||||
|
|
|
@ -295,7 +295,7 @@ zend_module_entry tidy_module_entry = {
|
||||||
"tidy",
|
"tidy",
|
||||||
tidy_functions,
|
tidy_functions,
|
||||||
PHP_MINIT(tidy),
|
PHP_MINIT(tidy),
|
||||||
PHP_MSHUTDOWN(tidy),
|
NULL,
|
||||||
PHP_RINIT(tidy),
|
PHP_RINIT(tidy),
|
||||||
NULL,
|
NULL,
|
||||||
PHP_MINFO(tidy),
|
PHP_MINFO(tidy),
|
||||||
|
@ -929,12 +929,6 @@ PHP_MINIT_FUNCTION(tidy)
|
||||||
return SUCCESS;
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
PHP_MSHUTDOWN_FUNCTION(tidy)
|
|
||||||
{
|
|
||||||
return SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
PHP_RINIT_FUNCTION(tidy)
|
PHP_RINIT_FUNCTION(tidy)
|
||||||
{
|
{
|
||||||
if (INI_BOOL("tidy.clean_output") == TRUE) {
|
if (INI_BOOL("tidy.clean_output") == TRUE) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue