diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2019-03-18 10:20:41 +0100 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2019-03-18 10:20:41 +0100 |
commit | e0e5d26c9ce29760e35b469c5389a4da8a51f9a5 (patch) | |
tree | 6f355386dc12d3fd6fbc3c8b54e360550dba30e7 /php.ini-production | |
parent | 1b411c039f5c7646eb14b7920bf4fa794c982de0 (diff) | |
parent | ad2d2e41de3a8ac243a73ec447f4107f0ba56aac (diff) | |
download | php-git-e0e5d26c9ce29760e35b469c5389a4da8a51f9a5.tar.gz |
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3:
Fix #76956: Wrong value for 'syslog.filter' documented in php.ini
Diffstat (limited to 'php.ini-production')
-rw-r--r-- | php.ini-production | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/php.ini-production b/php.ini-production index 205420d4d6..0c0021b202 100644 --- a/php.ini-production +++ b/php.ini-production @@ -600,9 +600,10 @@ html_errors = On ; control characters. If your logger accepts everything, then no filtering ; is needed at all. ; Allowed values are: -; ascii (only base ASCII characters) -; no_ctrl (all characters except control characters) +; ascii (all printable ASCII characters and NL) +; no-ctrl (all characters except control characters) ; all (all characters) +; http://php.net/syslog.filter ;syslog.filter = ascii ;windows.show_crt_warning |