summaryrefslogtreecommitdiff
path: root/php.ini-recommended
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2005-09-15 16:19:48 +0000
committerDerick Rethans <derick@php.net>2005-09-15 16:19:48 +0000
commit0f391bb0b350c4b91102314ec8920262fe72875a (patch)
tree7f564bfc22742bde617de9c79ed7638eccfda5fc /php.ini-recommended
parent50301ddc98c7e61deebeaa7ed0336c986fade45c (diff)
downloadphp-git-0f391bb0b350c4b91102314ec8920262fe72875a.tar.gz
- Add E_RECOVERABLE.
#- Thought I did this before already actually...
Diffstat (limited to 'php.ini-recommended')
-rw-r--r--php.ini-recommended3
1 files changed, 2 insertions, 1 deletions
diff --git a/php.ini-recommended b/php.ini-recommended
index e6b9abf444..65757e3ebe 100644
--- a/php.ini-recommended
+++ b/php.ini-recommended
@@ -312,6 +312,7 @@ memory_limit = 8M ; Maximum amount of memory a script may consume (8MB)
; reporting level
; E_ALL - All errors and warnings (doesn't include E_STRICT)
; E_ERROR - fatal run-time errors
+; E_RECOVERABLE_ERROR - almost fatal run-time errors
; E_WARNING - run-time warnings (non-fatal errors)
; E_PARSE - compile-time parse errors
; E_NOTICE - run-time notices (these are warnings which often result
@@ -343,7 +344,7 @@ memory_limit = 8M ; Maximum amount of memory a script may consume (8MB)
;
; - Show only errors
;
-;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
+;error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR
;
; - Show all errors, except coding standards warnings
;