From: Rasmus Lerdorf Date: Tue, 8 Feb 2005 05:25:48 +0000 (+0000) Subject: Don't need MSHUTDOWN either here X-Git-Tag: RELEASE_0_2~19 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bf7cb1179aaea1adaeddf637deceed3fc79e8932;p=php Don't need MSHUTDOWN either here --- diff --git a/ext/tidy/php_tidy.h b/ext/tidy/php_tidy.h index 234bb13fdd..7ca065936d 100644 --- a/ext/tidy/php_tidy.h +++ b/ext/tidy/php_tidy.h @@ -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); diff --git a/ext/tidy/tidy.c b/ext/tidy/tidy.c index b91a240a64..660f5e5993 100644 --- a/ext/tidy/tidy.c +++ b/ext/tidy/tidy.c @@ -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) {