summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2006-03-26 17:12:57 +0000
committerIlia Alshanetsky <iliaa@php.net>2006-03-26 17:12:57 +0000
commit25a03fe695133ea97ceb76c4275bc328b8ab826e (patch)
tree52b49b2e8d6016220887fbe542079781fd7f37e8
parent303cd902ecfed71e00cf4200947de70031721f77 (diff)
downloadphp-git-25a03fe695133ea97ceb76c4275bc328b8ab826e.tar.gz
MFH: Fixed bug #36857 (Added support for partial content fetching to the
HTTP streams wrapper).
-rw-r--r--NEWS2
-rw-r--r--ext/standard/http_fopen_wrapper.c1
2 files changed, 3 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 7181fe0b6d..50bf13ab89 100644
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,8 @@ PHP 4 NEWS
- Updated PCRE to version 6.6. (Andrei)
- Added overflow checks to wordwrap() function. (Ilia)
- Added a check for special characters in the session name. (Ilia)
+- Fixed bug #36857 (Added support for partial content fetching to the HTTP
+ streams wrapper). (Ilia)
- Fixed bug #36776 (node_list_wrapper_dtor segfault). (Rob)
- Fixed bug #36459 (Incorrect adding PHPSESSID to links, which contains \r\n).
(Ilia)
diff --git a/ext/standard/http_fopen_wrapper.c b/ext/standard/http_fopen_wrapper.c
index 30436777db..1df04b4928 100644
--- a/ext/standard/http_fopen_wrapper.c
+++ b/ext/standard/http_fopen_wrapper.c
@@ -353,6 +353,7 @@ php_stream *php_stream_url_wrap_http_ex(php_stream_wrapper *wrapper, char *path,
}
switch(response_code) {
case 200:
+ case 206: /* partial content */
case 302:
case 301:
reqok = 1;