From: Wez Furlong Date: Fri, 23 Aug 2002 17:39:20 +0000 (+0000) Subject: Respect safe mode setting when opening scripts and things for the ZE. X-Git-Tag: RELEASE_0_91~287 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2a71d7d5bb7f58bf0bf6cc5e56d61ad4469aead5;p=php Respect safe mode setting when opening scripts and things for the ZE. --- diff --git a/main/main.c b/main/main.c index 446e94786a..31dfdd71cf 100644 --- a/main/main.c +++ b/main/main.c @@ -711,7 +711,7 @@ static FILE *php_fopen_wrapper_for_zend(const char *filename, char **opened_path { TSRMLS_FETCH(); - return php_stream_open_wrapper_as_file((char *)filename, "rb", USE_PATH|IGNORE_URL_WIN|REPORT_ERRORS, opened_path); + return php_stream_open_wrapper_as_file((char *)filename, "rb", ENFORCE_SAFE_MODE|USE_PATH|IGNORE_URL_WIN|REPORT_ERRORS, opened_path); } /* }}} */