summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorHannes Magnusson <bjori@php.net>2008-12-09 10:23:44 +0000
committerHannes Magnusson <bjori@php.net>2008-12-09 10:23:44 +0000
commitf9bc85a19b7f9786b71fc382062414896d2de86c (patch)
treee87d49ab60691480e888d06dbe8597818336961b /main
parent76669fce2349afb04c2e9c8a91677293b514e56e (diff)
downloadphp-git-f9bc85a19b7f9786b71fc382062414896d2de86c.tar.gz
Whoops. Missing bit from the open_basedir tightening MFH
Diffstat (limited to 'main')
-rw-r--r--main/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c
index df91aa2615..d5df677b57 100644
--- a/main/main.c
+++ b/main/main.c
@@ -429,7 +429,7 @@ PHP_INI_BEGIN()
STD_PHP_INI_ENTRY("extension_dir", PHP_EXTENSION_DIR, PHP_INI_SYSTEM, OnUpdateStringUnempty, extension_dir, php_core_globals, core_globals)
STD_PHP_INI_ENTRY("include_path", PHP_INCLUDE_PATH, PHP_INI_ALL, OnUpdateStringUnempty, include_path, php_core_globals, core_globals)
PHP_INI_ENTRY("max_execution_time", "30", PHP_INI_ALL, OnUpdateTimeout)
- STD_PHP_INI_ENTRY("open_basedir", NULL, PHP_INI_SYSTEM, OnUpdateString, open_basedir, php_core_globals, core_globals)
+ STD_PHP_INI_ENTRY("open_basedir", NULL, PHP_INI_ALL, OnUpdateBaseDir, open_basedir, php_core_globals, core_globals)
STD_PHP_INI_ENTRY("safe_mode_exec_dir", PHP_SAFE_MODE_EXEC_DIR, PHP_INI_SYSTEM, OnUpdateString, safe_mode_exec_dir, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("file_uploads", "1", PHP_INI_SYSTEM, OnUpdateBool, file_uploads, php_core_globals, core_globals)