diff options
author | Andrea Faulds <ajf@ajf.me> | 2014-12-15 01:30:58 +0000 |
---|---|---|
committer | Andrea Faulds <ajf@ajf.me> | 2014-12-15 01:30:58 +0000 |
commit | 7950429626f02afe77a45da6236f3eec84b49eff (patch) | |
tree | 4ea5b72e8fde9ec9edd35c70b1e25ae8d332a1bd /ext | |
parent | 9c18ad3ac9103bc0a6c7b7ab8938fd7272095652 (diff) | |
download | php-git-7950429626f02afe77a45da6236f3eec84b49eff.tar.gz |
Revert HTTP status codes merger
This reverts commits 65768edcf3ef27a21a07e5e994bfd9ca1cabfa94, 627b350f31be83eb1d5ac5fad692256dcfaf1281 and 9c18ad3ac9103bc0a6c7b7ab8938fd7272095652.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/standard/tests/general_functions/header_redirection_001.phpt | 2 | ||||
-rw-r--r-- | ext/standard/tests/general_functions/header_redirection_002.phpt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/tests/general_functions/header_redirection_001.phpt b/ext/standard/tests/general_functions/header_redirection_001.phpt index c5ea70b56c..ecf57ec54a 100644 --- a/ext/standard/tests/general_functions/header_redirection_001.phpt +++ b/ext/standard/tests/general_functions/header_redirection_001.phpt @@ -6,6 +6,6 @@ Location: headers change the status code header('Location: http://example.com/'); ?> --EXPECTHEADERS-- -Status: 302 Found +Status: 302 Moved Temporarily Location: http://example.com/ --EXPECT-- diff --git a/ext/standard/tests/general_functions/header_redirection_002.phpt b/ext/standard/tests/general_functions/header_redirection_002.phpt index 3f8e0b9dac..2bf6dec510 100644 --- a/ext/standard/tests/general_functions/header_redirection_002.phpt +++ b/ext/standard/tests/general_functions/header_redirection_002.phpt @@ -7,6 +7,6 @@ header("HTTP/1.1 418 I'm a Teapot"); header('Location: http://example.com/'); ?> --EXPECTHEADERS-- -Status: 302 Found +Status: 302 Moved Temporarily Location: http://example.com/ --EXPECT-- |