|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-01-07 03:51 UTC] sniper@php.net
[2001-01-07 03:51 UTC] sniper@php.net
[2001-03-04 20:29 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 16:00:01 2025 UTC |
--- php-4.0.3pl1/sapi/cgi/cgi_main.c.old Wed Oct 11 20:48:44 2000 +++ php-4.0.3pl1/sapi/cgi/cgi_main.c Mon Nov 6 02:19:44 2000 @@ -419,6 +419,9 @@ setmode(_fileno(stderr), O_BINARY); /* make the stdio mode be binary */ #endif + if (php_module_startup(&sapi_module)==FAILURE) { + return FAILURE; + } /* Make sure we detect we are a cgi - a bit redundancy here, but the default case is that we have to check only the first one. */ @@ -475,9 +478,6 @@ ap_php_optarg = orig_optarg; } - if (php_module_startup(&sapi_module)==FAILURE) { - return FAILURE; - } #ifdef ZTS compiler_globals = ts_resource(compiler_globals_id); executor_globals = ts_resource(executor_globals_id);