]> granicus.if.org Git - php/commitdiff
Add E_RECOVERABLE
authorHannes Magnusson <bjori@php.net>
Sat, 9 Sep 2006 21:43:11 +0000 (21:43 +0000)
committerHannes Magnusson <bjori@php.net>
Sat, 9 Sep 2006 21:43:11 +0000 (21:43 +0000)
php.ini-dist
php.ini-recommended

index 8a4045dc43e1eb56571ca8ad2bb0c5a04ea28a23..264d828006b264d0a90035520f5067827c7f32fa 100644 (file)
@@ -264,6 +264,7 @@ memory_limit = 16M      ; Maximum amount of memory a script may consume (16MB)
 ; 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
@@ -295,7 +296,7 @@ memory_limit = 16M      ; Maximum amount of memory a script may consume (16MB)
 ;
 ;   - 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 for notices and coding standards warnings
 ;
index 379019e403b464890f2409ba70027de8252e0125..deed67178d44c1d84bb2a8151de578aaffeb1eef 100644 (file)
@@ -322,6 +322,7 @@ memory_limit = 16M      ; Maximum amount of memory a script may consume (16MB)
 ; 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
@@ -353,7 +354,7 @@ memory_limit = 16M      ; Maximum amount of memory a script may consume (16MB)
 ;
 ;   - 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
 ;