diff options
Diffstat (limited to 'sapi/activescript/php4activescript.c')
-rw-r--r-- | sapi/activescript/php4activescript.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sapi/activescript/php4activescript.c b/sapi/activescript/php4activescript.c index eed1d7e52e..a85cd625b9 100644 --- a/sapi/activescript/php4activescript.c +++ b/sapi/activescript/php4activescript.c @@ -30,8 +30,7 @@ static int php_activescript_startup(sapi_module_struct *sapi_module) { - if (php_module_startup(sapi_module) == FAILURE || - zend_startup_module(&php_activescript_module) == FAILURE) { + if (php_module_startup(sapi_module, &php_activescript_module, 1) == FAILURE) { return FAILURE; } else { return SUCCESS; |