helly Tue Mar 18 17:21:54 2003 EDT
Modified files:
/php4/main main.c
Log:
-turn html_errors on by default again
-disbale clickable error messages by docref_root default to ''
Index: php4/main/main.c
diff -u php4/main/main.c:1.541 php4/main/main.c:1.542
--- php4/main/main.c:1.541 Mon Mar 17 08:40:44 2003
+++ php4/main/main.c Tue Mar 18 17:21:54 2003
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: main.c,v 1.541 2003/03/17 13:40:44 wez Exp $ */
+/* $Id: main.c,v 1.542 2003/03/18 22:21:54 helly Exp $ */
/* {{{ includes
*/
@@ -270,9 +270,9 @@
STD_PHP_INI_BOOLEAN("display_startup_errors", "0", PHP_INI_ALL,
OnUpdateBool, display_startup_errors, php_core_globals,
core_globals)
STD_PHP_INI_BOOLEAN("enable_dl", "1",
PHP_INI_SYSTEM, OnUpdateBool, enable_dl,
php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("expose_php", "1",
PHP_INI_SYSTEM, OnUpdateBool, expose_php,
php_core_globals, core_globals)
- STD_PHP_INI_ENTRY("docref_root", "http://www.php.net/", PHP_INI_ALL,
OnUpdateString, docref_root, php_core_globals,
core_globals)
+ STD_PHP_INI_ENTRY("docref_root", "",
PHP_INI_ALL, OnUpdateString, docref_root,
php_core_globals, core_globals)
STD_PHP_INI_ENTRY("docref_ext", "",
PHP_INI_ALL, OnUpdateString, docref_ext,
php_core_globals, core_globals)
- STD_PHP_INI_BOOLEAN("html_errors", "0",
PHP_INI_ALL, OnUpdateBool, html_errors,
php_core_globals, core_globals)
+ STD_PHP_INI_BOOLEAN("html_errors", "1",
PHP_INI_ALL, OnUpdateBool, html_errors,
php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("xmlrpc_errors", "0",
PHP_INI_SYSTEM, OnUpdateBool, xmlrpc_errors,
php_core_globals, core_globals)
STD_PHP_INI_ENTRY("xmlrpc_error_number", "0", PHP_INI_ALL,
OnUpdateLong, xmlrpc_error_number, php_core_globals,
core_globals)
STD_PHP_INI_ENTRY("max_input_time", "-1",
PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateLong,
max_input_time, php_core_globals, core_globals)
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php