summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2004-11-28 13:22:11 +0000
committerAntony Dovgal <tony2001@php.net>2004-11-28 13:22:11 +0000
commit43b6cc62b1f8ee3474e5c71c8571ec80e28e6d0e (patch)
tree351b27de515a4ae168af2f75d071b4c7f65e6f8e
parentab4bfa115cebea90a478576436f0ea7ba582aa93 (diff)
downloadphp-git-43b6cc62b1f8ee3474e5c71c8571ec80e28e6d0e.tar.gz
MFH: fix #30314
-rw-r--r--php.ini-dist2
-rw-r--r--php.ini-recommended2
2 files changed, 2 insertions, 2 deletions
diff --git a/php.ini-dist b/php.ini-dist
index ca4542f973..f385788398 100644
--- a/php.ini-dist
+++ b/php.ini-dist
@@ -248,7 +248,7 @@ memory_limit = 8M ; Maximum amount of memory a script may consume (8MB)
; error_reporting is a bit-field. Or each number up to get desired error
; reporting level
-; E_ALL - All errors and warnings
+; E_ALL - All errors and warnings (doesn't include E_STRICT)
; E_ERROR - fatal run-time errors
; E_WARNING - run-time warnings (non-fatal errors)
; E_PARSE - compile-time parse errors
diff --git a/php.ini-recommended b/php.ini-recommended
index 99d8a26d75..dc832e1d4b 100644
--- a/php.ini-recommended
+++ b/php.ini-recommended
@@ -306,7 +306,7 @@ memory_limit = 8M ; Maximum amount of memory a script may consume (8MB)
; error_reporting is a bit-field. Or each number up to get desired error
; reporting level
-; E_ALL - All errors and warnings
+; E_ALL - All errors and warnings (doesn't include E_STRICT)
; E_ERROR - fatal run-time errors
; E_WARNING - run-time warnings (non-fatal errors)
; E_PARSE - compile-time parse errors