From e7d106f11d681ff2dd43a1341397a23e82909567 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Wed, 27 Jul 2011 12:20:32 +0000 Subject: [PATCH] - do not resolve the link if all we want is to open that file --- main/fopen_wrappers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/fopen_wrappers.c b/main/fopen_wrappers.c index 2c18044b33..f00127bc06 100644 --- a/main/fopen_wrappers.c +++ b/main/fopen_wrappers.c @@ -348,7 +348,7 @@ static FILE *php_fopen_and_set_opened_path(const char *path, const char *mode, c } fp = VCWD_FOPEN(path, mode); if (fp && opened_path) { - *opened_path = expand_filepath(path, NULL TSRMLS_CC); + *opened_path = expand_filepath_with_mode(path, NULL, NULL, 0, CWD_EXPAND TSRMLS_CC); } return fp; } -- 2.50.1