From: Marcus Boerger Date: Tue, 19 Nov 2002 14:11:50 +0000 (+0000) Subject: Allow error_prepend and error_append being empty as used in run-test.php X-Git-Tag: RELEASE_1_0b2~134 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c41b6b2967d73e0407ed01372a34f535ea196ed7;p=php Allow error_prepend and error_append being empty as used in run-test.php --- diff --git a/main/main.c b/main/main.c index 6d61ebe452..7cfc9462f0 100644 --- a/main/main.c +++ b/main/main.c @@ -290,8 +290,8 @@ PHP_INI_BEGIN() STD_PHP_INI_ENTRY("user_dir", NULL, PHP_INI_SYSTEM, OnUpdateStringUnempty, user_dir, php_core_globals, core_globals) STD_PHP_INI_ENTRY("variables_order", NULL, PHP_INI_ALL, OnUpdateStringUnempty, variables_order, php_core_globals, core_globals) - STD_PHP_INI_ENTRY("error_append_string", NULL, PHP_INI_ALL, OnUpdateStringUnempty, error_append_string, php_core_globals, core_globals) - STD_PHP_INI_ENTRY("error_prepend_string", NULL, PHP_INI_ALL, OnUpdateStringUnempty, error_prepend_string, php_core_globals, core_globals) + STD_PHP_INI_ENTRY("error_append_string", NULL, PHP_INI_ALL, OnUpdateString, error_append_string, php_core_globals, core_globals) + STD_PHP_INI_ENTRY("error_prepend_string", NULL, PHP_INI_ALL, OnUpdateString, error_prepend_string, php_core_globals, core_globals) PHP_INI_ENTRY("SMTP", "localhost",PHP_INI_ALL, NULL) PHP_INI_ENTRY("smtp_port", "25", PHP_INI_ALL, NULL)