diff options
author | Dmitry Stogov <dmitry@php.net> | 2010-10-15 07:30:24 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2010-10-15 07:30:24 +0000 |
commit | 3690ce39d9c775323ed73f41cb1a02fa56d19736 (patch) | |
tree | fb7eccc42683b0c0b5c398445531b66129b3a5dd /Zend/zend_API.h | |
parent | aaa2f1c30b3ba3da3e0030804054ee9c70e80bc7 (diff) | |
download | php-git-3690ce39d9c775323ed73f41cb1a02fa56d19736.tar.gz |
zend_collect_module_handlers() has to be called after zend_extensions startup, because they can register additional 'hidden' extensions
Diffstat (limited to 'Zend/zend_API.h')
-rw-r--r-- | Zend/zend_API.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h index 220e1ac43f..1c81e30bab 100644 --- a/Zend/zend_API.h +++ b/Zend/zend_API.h @@ -260,6 +260,7 @@ ZEND_API zend_module_entry* zend_register_internal_module(zend_module_entry *mod ZEND_API zend_module_entry* zend_register_module_ex(zend_module_entry *module TSRMLS_DC); ZEND_API int zend_startup_module_ex(zend_module_entry *module TSRMLS_DC); ZEND_API int zend_startup_modules(TSRMLS_D); +ZEND_API void zend_collect_module_handlers(TSRMLS_D); ZEND_API void zend_destroy_modules(void); ZEND_API void zend_check_magic_method_implementation(const zend_class_entry *ce, const zend_function *fptr, int error_type TSRMLS_DC); |