summaryrefslogtreecommitdiff
path: root/Zend/zend.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2000-09-25 18:10:45 +0000
committerZeev Suraski <zeev@php.net>2000-09-25 18:10:45 +0000
commit309827ec1dcc87886825edc057e816e5cb8eb3c5 (patch)
tree3ed733d7af5c92df2fc6e4881a025f5feb9679ee /Zend/zend.c
parent59d3eb5f2401997cbfa0d23951964f462eab069e (diff)
downloadphp-git-309827ec1dcc87886825edc057e816e5cb8eb3c5.tar.gz
Fix previous update - move extension startup further down the startup sequence
Diffstat (limited to 'Zend/zend.c')
-rw-r--r--Zend/zend.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Zend/zend.c b/Zend/zend.c
index ef08a88271..710cf2b2f4 100644
--- a/Zend/zend.c
+++ b/Zend/zend.c
@@ -335,7 +335,9 @@ int zend_startup(zend_utility_functions *utility_functions, char **extensions, i
fpsetmask(mask & ~FP_X_IMP);
}
#endif
-
+
+ zend_startup_extensions_mechanism();
+
/* Set up utility functions and values */
zend_error_cb = utility_functions->error_function;
zend_printf = utility_functions->printf_function;