summaryrefslogtreecommitdiff
path: root/ext/soap
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2020-08-18 08:37:36 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2020-08-18 08:37:36 +0200
commitc8e6f05e70c6f828a1ffda0b81dde7fcd5df03b0 (patch)
tree01cc421eefb158eb00dccafe6b237f12642f8166 /ext/soap
parent5d94ff8a008c0399094374b47ff0aeff740ddff8 (diff)
parent3e8172d27bd8ae0b63925a592de7d9f339b56139 (diff)
downloadphp-git-c8e6f05e70c6f828a1ffda0b81dde7fcd5df03b0.tar.gz
Merge branch 'PHP-7.4' into master
* PHP-7.4: Fix HTTP response status code
Diffstat (limited to 'ext/soap')
-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 de921cde8a..527753bd1b 100644
--- a/ext/soap/soap.c
+++ b/ext/soap/soap.c
@@ -1786,7 +1786,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);