Skip to content

Commit ad2d2e4

Browse files
committed
Fix #76956: Wrong value for 'syslog.filter' documented in php.ini
1 parent c446452 commit ad2d2e4

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ PHP NEWS
99
(Nikita)
1010
. Fixed bug #77345 (Stack Overflow caused by circular reference in garbage
1111
collection). (Alexandru Patranescu, Nikita, Dmitry)
12+
. Fixed bug #76956 (Wrong value for 'syslog.filter' documented in php.ini).
13+
(cmb)
1214

1315
- Bcmath:
1416
. Fixed bug #77742 (bcpow() implementation related to gcc compiler

php.ini-development

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -593,9 +593,10 @@ html_errors = On
593593
; control characters. If your logger accepts everything, then no filtering
594594
; is needed at all.
595595
; Allowed values are:
596-
; ascii (only base ASCII characters)
597-
; no_ctrl (all characters except control characters)
596+
; ascii (all printable ASCII characters and NL)
597+
; no-ctrl (all characters except control characters)
598598
; all (all characters)
599+
; http://php.net/syslog.filter
599600
;syslog.filter = ascii
600601

601602
;windows.show_crt_warning

php.ini-production

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -600,9 +600,10 @@ html_errors = On
600600
; control characters. If your logger accepts everything, then no filtering
601601
; is needed at all.
602602
; Allowed values are:
603-
; ascii (only base ASCII characters)
604-
; no_ctrl (all characters except control characters)
603+
; ascii (all printable ASCII characters and NL)
604+
; no-ctrl (all characters except control characters)
605605
; all (all characters)
606+
; http://php.net/syslog.filter
606607
;syslog.filter = ascii
607608

608609
;windows.show_crt_warning

0 commit comments

Comments
 (0)