From ad2d2e41de3a8ac243a73ec447f4107f0ba56aac Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Mon, 18 Mar 2019 10:04:18 +0100 Subject: [PATCH] Fix #76956: Wrong value for 'syslog.filter' documented in php.ini --- NEWS | 2 ++ php.ini-development | 5 +++-- php.ini-production | 5 +++-- 3 files changed, 8 insertions(+), 4 deletions(-) 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 -- 2.50.1