summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2020-08-18 08:35:56 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2020-08-18 08:35:56 +0200
commit3e8172d27bd8ae0b63925a592de7d9f339b56139 (patch)
treee6aed14ff91bb6dace0e5b9150ab65f268a9c56e
parent5885eecf23dac47778da664f14010b6f1979fbfd (diff)
parent1ae80f8c92e37bc1940ee7d927ff365fc176f2d6 (diff)
downloadphp-git-3e8172d27bd8ae0b63925a592de7d9f339b56139.tar.gz
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix HTTP response status code
-rw-r--r--ext/soap/soap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/soap.c b/ext/soap/soap.c
index 1383055370..4dc463fef0 100644
--- a/ext/soap/soap.c
+++ b/ext/soap/soap.c
@@ -2067,7 +2067,7 @@ static void soap_server_fault_ex(sdlFunctionPtr function, zval* fault, soapHeade
our fault code with their own handling... Figure this out later
*/
if (use_http_error_status) {
- sapi_add_header("HTTP/1.1 500 Internal Service Error", sizeof("HTTP/1.1 500 Internal Service Error")-1, 1);
+ sapi_add_header("HTTP/1.1 500 Internal Server Error", sizeof("HTTP/1.1 500 Internal Server Error")-1, 1);
}
if (zend_ini_long("zlib.output_compression", sizeof("zlib.output_compression"), 0)) {
sapi_add_header("Connection: close", sizeof("Connection: close")-1, 1);