summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2009-02-13 16:54:16 +0000
committerKalle Sommer Nielsen <kalle@php.net>2009-02-13 16:54:16 +0000
commit20f9ef8321a49a52ef15f519e3abbd8c3448915a (patch)
tree420665f21dd1595f237b1954bdb2a43d5f146f89
parent95651ba3605ad64b99e7d5b8664f5737dba5d4dd (diff)
downloadphp-git-20f9ef8321a49a52ef15f519e3abbd8c3448915a.tar.gz
Revert previous change
-rw-r--r--php.ini-dist6
-rw-r--r--php.ini-recommended6
2 files changed, 6 insertions, 6 deletions
diff --git a/php.ini-dist b/php.ini-dist
index c58336be7b..f00d902f56 100644
--- a/php.ini-dist
+++ b/php.ini-dist
@@ -251,11 +251,11 @@ memory_limit = 128M ; Maximum amount of memory a script may consume (128M)
;
; - Show all errors, except for notices and coding standards warnings
;
-;error_reporting = E_ALL | ~E_NOTICE | ~E_STRICT
+;error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
;
; - Show all errors, except for notices
;
-;error_reporting = E_ALL | ~E_NOTICE
+;error_reporting = E_ALL & ~E_NOTICE
;
; - Show only errors
;
@@ -263,7 +263,7 @@ memory_limit = 128M ; Maximum amount of memory a script may consume (128M)
;
; - Show all errors, except coding standards warnings
;
-error_reporting = E_ALL | ~E_STRICT
+error_reporting = E_ALL & ~E_STRICT
; Print out errors (as a part of the output). For production web sites,
; you're strongly encouraged to turn this feature off, and use error logging
diff --git a/php.ini-recommended b/php.ini-recommended
index 06a5bdcea5..b6a7aaae80 100644
--- a/php.ini-recommended
+++ b/php.ini-recommended
@@ -288,11 +288,11 @@ memory_limit = 128M ; Maximum amount of memory a script may consume (128M)
;
; - Show all errors, except for notices and coding standards warnings
;
-;error_reporting = E_ALL | ~E_NOTICE | ~E_STRICT
+;error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT
;
; - Show all errors, except for notices
;
-;error_reporting = E_ALL | ~E_NOTICE
+;error_reporting = E_ALL & ~E_NOTICE
;
; - Show only errors
;
@@ -300,7 +300,7 @@ memory_limit = 128M ; Maximum amount of memory a script may consume (128M)
;
; - Show all errors, except coding standards warnings
;
-error_reporting = E_ALL | ~E_STRICT
+error_reporting = E_ALL & ~E_STRICT
; Print out errors (as a part of the output). For production web sites,
; you're strongly encouraged to turn this feature off, and use error logging