Skip to content

Commit 7448b03

Browse files
committed
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: Fix #74139: mail.add_x_header default inconsistent with docs [ci skip]
2 parents b2622ed + 25f324f commit 7448b03

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Diff for: NEWS

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ PHP NEWS
66
. Fixed bug #76088 (ODBC functions are not available by default on Windows).
77
(cmb)
88

9+
- Standard:
10+
. Fixed bug #74139 (mail.add_x_header default inconsistent with docs). (cmb)
911

1012
29 Mar 2018, PHP 7.2.4
1113

Diff for: php.ini-development

+1-1
Original file line numberDiff line numberDiff line change
@@ -1042,7 +1042,7 @@ smtp_port = 25
10421042
;mail.force_extra_parameters =
10431043

10441044
; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
1045-
mail.add_x_header = On
1045+
mail.add_x_header = Off
10461046

10471047
; The path to a log file that will log all mail() calls. Log entries include
10481048
; the full path of the script, line number, To address and headers.

Diff for: php.ini-production

+1-1
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,7 @@ smtp_port = 25
10491049
;mail.force_extra_parameters =
10501050

10511051
; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
1052-
mail.add_x_header = On
1052+
mail.add_x_header = Off
10531053

10541054
; The path to a log file that will log all mail() calls. Log entries include
10551055
; the full path of the script, line number, To address and headers.

0 commit comments

Comments
 (0)