iliaa Sun Mar 26 17:12:05 2006 UTC Modified files: (Branch: PHP_5_1) /php-src/ext/standard http_fopen_wrapper.c /php-src NEWS Log: Fixed bug #36857 (Added support for partial content fetching to the HTTP streams wrapper). http://cvs.php.net/viewcvs.cgi/php-src/ext/standard/http_fopen_wrapper.c?r1=1.99.2.9&r2=1.99.2.10&diff_format=u Index: php-src/ext/standard/http_fopen_wrapper.c diff -u php-src/ext/standard/http_fopen_wrapper.c:1.99.2.9 php-src/ext/standard/http_fopen_wrapper.c:1.99.2.10 --- php-src/ext/standard/http_fopen_wrapper.c:1.99.2.9 Fri Jan 20 01:40:32 2006 +++ php-src/ext/standard/http_fopen_wrapper.c Sun Mar 26 17:12:05 2006 @@ -19,7 +19,7 @@ | Sara Golemon <[EMAIL PROTECTED]> | +----------------------------------------------------------------------+ */ -/* $Id: http_fopen_wrapper.c,v 1.99.2.9 2006/01/20 01:40:32 iliaa Exp $ */ +/* $Id: http_fopen_wrapper.c,v 1.99.2.10 2006/03/26 17:12:05 iliaa Exp $ */ #include "php.h" #include "php_globals.h" @@ -493,6 +493,7 @@ } switch(response_code) { case 200: + case 206: /* partial content */ case 302: case 303: case 301: http://cvs.php.net/viewcvs.cgi/php-src/NEWS?r1=1.2027.2.481&r2=1.2027.2.482&diff_format=u Index: php-src/NEWS diff -u php-src/NEWS:1.2027.2.481 php-src/NEWS:1.2027.2.482 --- php-src/NEWS:1.2027.2.481 Sun Mar 26 00:23:25 2006 +++ php-src/NEWS Sun Mar 26 17:12:05 2006 @@ -13,6 +13,8 @@ - Fixed SoapFault::getMessage(). (Dmitry) - Fixed bug #36859 (DOMElement crashes when calling __construct when clone'ing). (Tony) +- Fixed bug #36857 (Added support for partial content fetching to the HTTP + streams wrapper). (Ilia) - Fixed bug #36825 (Exceptions thrown in ArrayObject::offsetGet cause segfault). (Tony) - Fixed bug #36820 (Privileged connection with an Oracle password file fails).
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php