summaryrefslogtreecommitdiff
path: root/main/php_globals.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2002-04-06 18:49:59 +0000
committerMarcus Boerger <helly@php.net>2002-04-06 18:49:59 +0000
commitddc6437e324c31d505610056f01ed3d0c04fdf2c (patch)
tree3aa5fa7f004d8e8a6be39e62ef8f5367728ce1d6 /main/php_globals.h
parent62538caa862e582523dad0f261c0d8ed6ae0cbf6 (diff)
downloadphp-git-ddc6437e324c31d505610056f01ed3d0c04fdf2c.tar.gz
new feature ignoring repeated error messages (defaults to old behaviour)
@You can now disable logging of repeated error messages with two new ini settings ignore_repeated_errors, ignore_repeated_source. @(Marcus)
Diffstat (limited to 'main/php_globals.h')
-rw-r--r--main/php_globals.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/php_globals.h b/main/php_globals.h
index e34f273598..4e756c3627 100644
--- a/main/php_globals.h
+++ b/main/php_globals.h
@@ -76,6 +76,8 @@ struct _php_core_globals {
zend_bool display_errors;
zend_bool display_startup_errors;
zend_bool log_errors;
+ zend_bool ignore_repeated_errors;
+ zend_bool ignore_repeated_source;
char *error_log;
char *doc_root;