summaryrefslogtreecommitdiff
path: root/php.ini-recommended
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2005-11-06 11:09:32 +0000
committerDerick Rethans <derick@php.net>2005-11-06 11:09:32 +0000
commit15c1b8a3a2b869972eb2dcdb6f80dfa526eeb362 (patch)
tree48da6fb6fb7c2dd2da374bf4ef05ed85974a92db /php.ini-recommended
parentc388f97ac9d9e621eb11a5ce0cc6e9514c0511c1 (diff)
downloadphp-git-15c1b8a3a2b869972eb2dcdb6f80dfa526eeb362.tar.gz
- MFH: E_STRICT is not part of E_ALL, so the lines were wrong here.
Diffstat (limited to 'php.ini-recommended')
-rw-r--r--php.ini-recommended4
1 files changed, 2 insertions, 2 deletions
diff --git a/php.ini-recommended b/php.ini-recommended
index 7b47216285..8a49b3e58a 100644
--- a/php.ini-recommended
+++ b/php.ini-recommended
@@ -335,11 +335,11 @@ memory_limit = 8M ; Maximum amount of memory a script may consume (8MB)
;
; - Show all errors, except for notices and coding standards warnings
;
-;error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
+;error_reporting = E_ALL & ~E_NOTICE
;
; - Show all errors, except for notices
;
-;error_reporting = E_ALL & ~E_NOTICE
+;error_reporting = E_ALL & ~E_NOTICE | E_STRICT
;
; - Show only errors
;