diff options
author | Kalle Sommer Nielsen <kalle@php.net> | 2009-02-13 16:54:56 +0000 |
---|---|---|
committer | Kalle Sommer Nielsen <kalle@php.net> | 2009-02-13 16:54:56 +0000 |
commit | 1c48fa06e5c44aa102a9923968830ebf6cdd068a (patch) | |
tree | 5d58d1b4a28c5f4ae29e333ba78bdc7f6167318d /php.ini-dist | |
parent | a2bc9657603f566028cd4986270cc4bb50c40bc6 (diff) | |
download | php-git-1c48fa06e5c44aa102a9923968830ebf6cdd068a.tar.gz |
MFH: Revert previous change
Diffstat (limited to 'php.ini-dist')
-rw-r--r-- | php.ini-dist | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/php.ini-dist b/php.ini-dist index 193673226e..f1a940a369 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -301,11 +301,11 @@ memory_limit = 128M ; Maximum amount of memory a script may consume (128MB) ; ; - Show all errors, except for notices and coding standards warnings ; -;error_reporting = E_ALL | ~E_NOTICE +;error_reporting = E_ALL & ~E_NOTICE ; ; - Show all errors, except for notices ; -;error_reporting = E_ALL | ~E_NOTICE | E_STRICT +;error_reporting = E_ALL & ~E_NOTICE | E_STRICT ; ; - Show only errors ; @@ -313,7 +313,7 @@ memory_limit = 128M ; Maximum amount of memory a script may consume (128MB) ; ; - Show all errors except for notices and coding standards warnings ; -error_reporting = E_ALL | ~E_NOTICE +error_reporting = E_ALL & ~E_NOTICE ; 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 |