From: Christoph M. Becker Date: Mon, 18 Mar 2019 09:04:18 +0000 (+0100) Subject: Fix #76956: Wrong value for 'syslog.filter' documented in php.ini X-Git-Tag: php-7.3.4RC1~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ad2d2e41de3a8ac243a73ec447f4107f0ba56aac;p=php Fix #76956: Wrong value for 'syslog.filter' documented in php.ini --- diff --git a/NEWS b/NEWS index f9d637f3e5..18dbcf3f34 100644 --- a/NEWS +++ b/NEWS @@ -9,6 +9,8 @@ PHP NEWS (Nikita) . Fixed bug #77345 (Stack Overflow caused by circular reference in garbage collection). (Alexandru Patranescu, Nikita, Dmitry) + . Fixed bug #76956 (Wrong value for 'syslog.filter' documented in php.ini). + (cmb) - Bcmath: . Fixed bug #77742 (bcpow() implementation related to gcc compiler diff --git a/php.ini-development b/php.ini-development index e475e379ea..ff996cd1b8 100644 --- a/php.ini-development +++ b/php.ini-development @@ -593,9 +593,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 diff --git a/php.ini-production b/php.ini-production index 980e9a8cda..57ff374102 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