summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-11-26 20:19:28 +0000
committerZeev Suraski <zeev@php.net>1999-11-26 20:19:28 +0000
commit71b1219ee3a07466bcfa1bba2fbfc72ec8123737 (patch)
tree32e96649ef6b4ddaa4568a6425a20256f37bda3f /Zend
parent3d092da662cede0e7380bcbbaf16109a032a0a30 (diff)
downloadphp-git-71b1219ee3a07466bcfa1bba2fbfc72ec8123737.tar.gz
This request_shutdown() is no longer needed (never was needed really)
Diffstat (limited to 'Zend')
-rw-r--r--Zend/zend_API.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/Zend/zend_API.c b/Zend/zend_API.c
index 38c0135d9a..54c320ca6b 100644
--- a/Zend/zend_API.c
+++ b/Zend/zend_API.c
@@ -735,12 +735,6 @@ void module_destructor(zend_module_entry *module)
clean_module_constants(module->module_number);
}
- if (module->request_shutdown_func) {
-#if 0
- zend_printf("%s: Request shutdown\n",module->name);
-#endif
- module->request_shutdown_func(module->type, module->module_number);
- }
if (module->module_started && module->module_shutdown_func) {
#if 0
zend_printf("%s: Module shutdown\n",module->name);