diff options
Diffstat (limited to 'ext/tidy/tidy.c')
-rw-r--r-- | ext/tidy/tidy.c | 8 |
1 files changed, 1 insertions, 7 deletions
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) { |