File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ ZEND_API zend_bool zend_rc_debug = 0;
94
94
static ZEND_INI_MH (OnUpdateErrorReporting ) /* {{{ */
95
95
{
96
96
if (!new_value ) {
97
- EG (error_reporting ) = E_ALL & ~ E_NOTICE & ~ E_STRICT & ~ E_DEPRECATED ;
97
+ EG (error_reporting ) = E_ALL ;
98
98
} else {
99
99
EG (error_reporting ) = atoi (ZSTR_VAL (new_value ));
100
100
}
Original file line number Diff line number Diff line change 104
104
; Production Value: Off
105
105
106
106
; error_reporting
107
- ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
107
+ ; Default Value: E_ALL
108
108
; Development Value: E_ALL
109
109
; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
110
110
@@ -449,7 +449,7 @@ memory_limit = 128M
449
449
; E_ALL & ~E_NOTICE (Show all errors, except for notices)
450
450
; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
451
451
; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
452
- ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
452
+ ; Default Value: E_ALL
453
453
; Development Value: E_ALL
454
454
; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
455
455
; http://php.net/error-reporting
Original file line number Diff line number Diff line change 104
104
; Production Value: Off
105
105
106
106
; error_reporting
107
- ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
107
+ ; Default Value: E_ALL
108
108
; Development Value: E_ALL
109
109
; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
110
110
@@ -451,7 +451,7 @@ memory_limit = 128M
451
451
; E_ALL & ~E_NOTICE (Show all errors, except for notices)
452
452
; E_ALL & ~E_NOTICE & ~E_STRICT (Show all errors, except for notices and coding standards warnings.)
453
453
; E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR (Show only errors)
454
- ; Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
454
+ ; Default Value: E_ALL
455
455
; Development Value: E_ALL
456
456
; Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT
457
457
; http://php.net/error-reporting
You can’t perform that action at this time.
0 commit comments