diff options
author | Zeev Suraski <zeev@php.net> | 2002-09-18 21:57:42 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2002-09-18 21:57:42 +0000 |
commit | 76312b4508b43ed2cebd97b749e9e90181e55073 (patch) | |
tree | de244c23b518eff0488eb3a965b21e2522ee0454 /sapi/apache/mod_php4.c | |
parent | 70f17979fb7ac0c7379a48bc86d26a009cfb56ed (diff) | |
download | php-git-76312b4508b43ed2cebd97b749e9e90181e55073.tar.gz |
another startup initialization fix - only ISAPI and CGI SAPI's tested,
minor compile buglets might occur in other SAPIs, but should be trivial
to fix...
Diffstat (limited to 'sapi/apache/mod_php4.c')
-rw-r--r-- | sapi/apache/mod_php4.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sapi/apache/mod_php4.c b/sapi/apache/mod_php4.c index 26573a6065..bbc95fb7ed 100644 --- a/sapi/apache/mod_php4.c +++ b/sapi/apache/mod_php4.c @@ -256,8 +256,7 @@ static void sapi_apache_register_server_variables(zval *track_vars_array TSRMLS_ */ static int php_apache_startup(sapi_module_struct *sapi_module) { - if (php_module_startup(sapi_module) == FAILURE - || zend_startup_module(&apache_module_entry) == FAILURE) { + if (php_module_startup(sapi_module, &apache_module_entry, 1) == FAILURE) { return FAILURE; } else { return SUCCESS; |