Browse Source

Revert previous change

experimental/first_unicode_implementation
Kalle Sommer Nielsen 18 years ago
parent
commit
20f9ef8321
  1. 6
      php.ini-dist
  2. 6
      php.ini-recommended

6
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

6
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

Loading…
Cancel
Save