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/webjames/webjames.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/webjames/webjames.c')
| -rw-r--r-- | sapi/webjames/webjames.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/webjames/webjames.c b/sapi/webjames/webjames.c index 3bea3457e4..9d2f25013a 100644 --- a/sapi/webjames/webjames.c +++ b/sapi/webjames/webjames.c @@ -242,10 +242,10 @@ static zend_module_entry php_webjames_module = { STANDARD_MODULE_PROPERTIES }; + static int php_webjames_startup(sapi_module_struct *sapi_module) { - if(php_module_startup(sapi_module) == FAILURE - || zend_startup_module(&php_webjames_module) == FAILURE) { + if(php_module_startup(sapi_module, &php_webjames_module, 1) == FAILURE) { return FAILURE; } else { return SUCCESS; |
