iliaa Sun Mar 26 17:12:26 2006 UTC Modified files: /php-src/ext/standard http_fopen_wrapper.c Log: MFB51: 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.111&r2=1.112&diff_format=u Index: php-src/ext/standard/http_fopen_wrapper.c diff -u php-src/ext/standard/http_fopen_wrapper.c:1.111 php-src/ext/standard/http_fopen_wrapper.c:1.112 --- php-src/ext/standard/http_fopen_wrapper.c:1.111 Thu Mar 2 13:12:45 2006 +++ php-src/ext/standard/http_fopen_wrapper.c Sun Mar 26 17:12:26 2006 @@ -19,7 +19,7 @@ | Sara Golemon <[EMAIL PROTECTED]> | +----------------------------------------------------------------------+ */ -/* $Id: http_fopen_wrapper.c,v 1.111 2006/03/02 13:12:45 dmitry Exp $ */ +/* $Id: http_fopen_wrapper.c,v 1.112 2006/03/26 17:12:26 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:
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php