diff options
author | Stanislav Malyshev <stas@php.net> | 2000-08-13 18:00:50 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2000-08-13 18:00:50 +0000 |
commit | 5090b1e8d5d3a3dc2afcb418d059520e8b9dd528 (patch) | |
tree | 35d04f58ed639d32ca9e59f9f817b67be3c15dad /sapi/isapi/php4isapi.c | |
parent | 93acbedce8afa8f77478eea30985e89efcdc61d1 (diff) | |
download | php-git-5090b1e8d5d3a3dc2afcb418d059520e8b9dd528.tar.gz |
Fix zend_fiel_handle handling. Should fix URL include
and various opened_path inconsistencies.
Diffstat (limited to 'sapi/isapi/php4isapi.c')
-rw-r--r-- | sapi/isapi/php4isapi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sapi/isapi/php4isapi.c b/sapi/isapi/php4isapi.c index 441b38d72a..6943ff2074 100644 --- a/sapi/isapi/php4isapi.c +++ b/sapi/isapi/php4isapi.c @@ -575,6 +575,7 @@ DWORD WINAPI HttpExtensionProc(LPEXTENSION_CONTROL_BLOCK lpECB) file_handle.filename = sapi_globals->request_info.path_translated; file_handle.free_filename = 0; file_handle.type = ZEND_HANDLE_FILENAME; + file_handle.opened_path = NULL; php_request_startup(CLS_C ELS_CC PLS_CC SLS_CC); php_execute_script(&file_handle CLS_CC ELS_CC PLS_CC); |