Don't need MSHUTDOWN either here

This commit is contained in:
Rasmus Lerdorf 2005-02-08 05:25:48 +00:00
parent d8ad6ff49b
commit bf7cb1179a
2 changed files with 1 additions and 8 deletions

View file

@ -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);

View file

@ -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) {