diff options
| author | Sara Golemon <pollita@php.net> | 2004-01-29 00:08:21 +0000 |
|---|---|---|
| committer | Sara Golemon <pollita@php.net> | 2004-01-29 00:08:21 +0000 |
| commit | a1724818694f7442dc0421ef012a1a74ff016047 (patch) | |
| tree | 320f8b2bb413014b1de46f6b3987d36756b10293 | |
| parent | 760e43e3730ff5c686dc9b470c4f9f8d3a087163 (diff) | |
| download | php-git-a1724818694f7442dc0421ef012a1a74ff016047.tar.gz | |
This should not have been an INI_ALL directive.
| -rw-r--r-- | main/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c index 53e8e7e004..7ea44cf285 100644 --- a/main/main.c +++ b/main/main.c @@ -326,7 +326,7 @@ PHP_INI_BEGIN() PHP_INI_ENTRY("disable_functions", "", PHP_INI_SYSTEM, NULL) PHP_INI_ENTRY("disable_classes", "", PHP_INI_SYSTEM, NULL) - STD_PHP_INI_BOOLEAN("allow_url_fopen", "1", PHP_INI_ALL, OnUpdateBool, allow_url_fopen, php_core_globals, core_globals) + STD_PHP_INI_BOOLEAN("allow_url_fopen", "1", PHP_INI_SYSTEM, OnUpdateBool, allow_url_fopen, php_core_globals, core_globals) STD_PHP_INI_BOOLEAN("always_populate_raw_post_data", "0", PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateBool, always_populate_raw_post_data, php_core_globals, core_globals) PHP_INI_END() |
