iliaa Wed Jan 16 15:50:38 2008 UTC Modified files: (Branch: PHP_5_2) /php-src/sapi/apache2handler sapi_apache2.c /php-src NEWS Log: MFB: Fixed bug #42779 (Incorrect forcing from HTTP/1.0 request to HTTP/1.1 response) http://cvs.php.net/viewvc.cgi/php-src/sapi/apache2handler/sapi_apache2.c?r1=1.57.2.10.2.16&r2=1.57.2.10.2.17&diff_format=u Index: php-src/sapi/apache2handler/sapi_apache2.c diff -u php-src/sapi/apache2handler/sapi_apache2.c:1.57.2.10.2.16 php-src/sapi/apache2handler/sapi_apache2.c:1.57.2.10.2.17 --- php-src/sapi/apache2handler/sapi_apache2.c:1.57.2.10.2.16 Mon Dec 31 07:20:16 2007 +++ php-src/sapi/apache2handler/sapi_apache2.c Wed Jan 16 15:50:37 2008 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: sapi_apache2.c,v 1.57.2.10.2.16 2007/12/31 07:20:16 sebastian Exp $ */ +/* $Id: sapi_apache2.c,v 1.57.2.10.2.17 2008/01/16 15:50:37 iliaa Exp $ */ #define ZEND_INCLUDE_FULL_WINDOWS_HEADERS @@ -134,8 +134,6 @@ ctx->r->proto_num = 1000 + (sline[7]-'0'); if ((sline[7]-'0') == 0) { apr_table_set(ctx->r->subprocess_env, "force-response-1.0", "true"); - } else { - apr_table_set(ctx->r->subprocess_env, "force-response-1.1", "true"); } } http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.1055&r2=1.2027.2.547.2.1056&diff_format=u Index: php-src/NEWS diff -u php-src/NEWS:1.2027.2.547.2.1055 php-src/NEWS:1.2027.2.547.2.1056 --- php-src/NEWS:1.2027.2.547.2.1055 Wed Jan 16 08:35:58 2008 +++ php-src/NEWS Wed Jan 16 15:50:37 2008 @@ -72,6 +72,8 @@ - Fixed bug #42945 (preg_split() swallows part of the string). (Nuno) - Fixed bug #42937 (__call() method not invoked when methods are called on parent from child class). (Dmitry) +- Fixed bug #42779 (Incorrect forcing from HTTP/1.0 request to HTTP/1.1 + response). (Ilia) - Fixed bug #42736 (xmlrpc_server_call_method() crashes). (Tony) - Fixed bug #42692 (Procedure 'int1' not present with doc/lit SoapServer). (Dmitry)
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php