From: Derick Rethans Date: Wed, 23 Oct 2002 09:31:33 +0000 (+0000) Subject: - No reason why implicit_flush should not be settable from a script X-Git-Tag: php-4.3.0pre2~162 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=273d5e04d2240a57e2bcaeafe77aef4e5b997751;p=php - No reason why implicit_flush should not be settable from a script --- diff --git a/main/main.c b/main/main.c index e5933bcc8b..897fab854b 100644 --- a/main/main.c +++ b/main/main.c @@ -253,7 +253,7 @@ PHP_INI_BEGIN() STD_PHP_INI_ENTRY("xmlrpc_error_number", "0", PHP_INI_ALL, OnUpdateInt, xmlrpc_error_number, php_core_globals, core_globals) STD_PHP_INI_ENTRY("max_input_time", "0", PHP_INI_ALL, OnUpdateInt, max_input_time, php_core_globals, core_globals) STD_PHP_INI_BOOLEAN("ignore_user_abort", "0", PHP_INI_ALL, OnUpdateBool, ignore_user_abort, php_core_globals, core_globals) - STD_PHP_INI_BOOLEAN("implicit_flush", "0", PHP_INI_PERDIR|PHP_INI_SYSTEM,OnUpdateBool, implicit_flush, php_core_globals, core_globals) + STD_PHP_INI_BOOLEAN("implicit_flush", "0", PHP_INI_ALL, OnUpdateBool, implicit_flush, php_core_globals, core_globals) STD_PHP_INI_BOOLEAN("log_errors", "0", PHP_INI_ALL, OnUpdateBool, log_errors, php_core_globals, core_globals) STD_PHP_INI_ENTRY("log_errors_max_len", "1024", PHP_INI_ALL, OnUpdateInt, log_errors_max_len, php_core_globals, core_globals) STD_PHP_INI_BOOLEAN("ignore_repeated_errors", "0", PHP_INI_ALL, OnUpdateBool, ignore_repeated_errors, php_core_globals, core_globals)