From 99caa5d43b706a390b9568dd99677d0d3d1bbba9 Mon Sep 17 00:00:00 2001 From: Andrey Hristov Date: Sat, 11 Sep 1999 20:36:47 +0000 Subject: [PATCH] Use OnUpdateBool for Boolean entries. --- ChangeLog | 1 + main/main.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2a3a5ed9e94..6249688502e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ PHP 4.0 CHANGE LOG ChangeLog ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ?? 1999, Version 4.0 Beta 3 +- Fixed crash related to ignore_user_abort ini entry (Andrey) - Added support for external entropy sources for session id creation (on Unices /dev/random and /dev/urandom) (Sascha) - Added gpc_globals variable directive to php.ini. By default it is On, but diff --git a/main/main.c b/main/main.c index ffc7f59bc44..2cef5cf7322 100644 --- a/main/main.c +++ b/main/main.c @@ -229,7 +229,7 @@ PHP_INI_BEGIN() STD_PHP_INI_BOOLEAN("gpc_globals", "1", PHP_INI_ALL, OnUpdateBool, gpc_globals, php_core_globals, core_globals) STD_PHP_INI_ENTRY("gpc_order", "GPC", PHP_INI_ALL, OnUpdateStringUnempty, gpc_order, php_core_globals, core_globals) STD_PHP_INI_ENTRY("arg_separator", "&", PHP_INI_ALL, OnUpdateStringUnempty, arg_separator, php_core_globals, core_globals) - STD_PHP_INI_BOOLEAN("ignore_user_abort", "1", PHP_INI_ALL, OnUpdateInt, ignore_user_abort, php_core_globals, core_globals) + STD_PHP_INI_BOOLEAN("ignore_user_abort", "1", PHP_INI_ALL, OnUpdateBool, ignore_user_abort, php_core_globals, core_globals) PHP_INI_END()