summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2002-11-19 14:11:50 +0000
committerMarcus Boerger <helly@php.net>2002-11-19 14:11:50 +0000
commitc41b6b2967d73e0407ed01372a34f535ea196ed7 (patch)
tree2067e1528a6603bffaf91a02e8cf5a1f2f8abf10
parent0b2d775d3d220ea501234415ace39f0d01e8dd64 (diff)
downloadphp-git-c41b6b2967d73e0407ed01372a34f535ea196ed7.tar.gz
Allow error_prepend and error_append being empty as used in run-test.php
-rw-r--r--main/main.c4
1 files changed, 2 insertions, 2 deletions
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)