From 2a71d7d5bb7f58bf0bf6cc5e56d61ad4469aead5 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Fri, 23 Aug 2002 17:39:20 +0000 Subject: [PATCH] Respect safe mode setting when opening scripts and things for the ZE. --- main/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } /* }}} */ -- 2.50.1