diff options
Diffstat (limited to 'php.ini-recommended')
| -rw-r--r-- | php.ini-recommended | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/php.ini-recommended b/php.ini-recommended index d632a9105b..e12060e3ec 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -351,11 +351,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 ; @@ -363,7 +363,7 @@ memory_limit = 128M ; Maximum amount of memory a script may consume (128MB) ; ; - Show all errors, except coding standards warnings ; -error_reporting = E_ALL +error_reporting = E_ALL ; 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 |
