summaryrefslogtreecommitdiff
path: root/php.ini-recommended
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2005-11-06 11:08:50 +0000
committerDerick Rethans <derick@php.net>2005-11-06 11:08:50 +0000
commitdba96fb9e45c472a1f8f49464b25e3a0d045e0be (patch)
tree15575a619b699ee1c30b86e9381ac0ef84944def /php.ini-recommended
parentff72c376c2d08fc20b25d6df0f7062001d86804a (diff)
downloadphp-git-dba96fb9e45c472a1f8f49464b25e3a0d045e0be.tar.gz
- 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 1baad550b5..005c19ba96 100644
--- a/php.ini-recommended
+++ b/php.ini-recommended
@@ -336,11 +336,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
;