thetaphi Tue Sep 21 18:00:39 2004 EDT Modified files: (Branch: PHP_4_3) /php-src NEWS /php-src/sapi/nsapi nsapi.c Log: Fixed bug #29805 (HTTP Authentication Issues) http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1247.2.730&r2=1.1247.2.731&ty=u Index: php-src/NEWS diff -u php-src/NEWS:1.1247.2.730 php-src/NEWS:1.1247.2.731 --- php-src/NEWS:1.1247.2.730 Mon Sep 20 18:27:55 2004 +++ php-src/NEWS Tue Sep 21 18:00:38 2004 @@ -1,5 +1,8 @@ PHP 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| +?? ??? 2004, Version 4.3.10 +- Fixed bug #29805 (HTTP Authentication Issues). (Uwe Schindler) + 22 Sep 2004, Version 4.3.9 - GPC input processing fixes (Stefano Di Paola, Rasmus, Stefan) - Implemented periodic PCRE compiled regexp cache cleanup, to avoid memory http://cvs.php.net/diff.php/php-src/sapi/nsapi/nsapi.c?r1=1.28.2.31&r2=1.28.2.32&ty=u Index: php-src/sapi/nsapi/nsapi.c diff -u php-src/sapi/nsapi/nsapi.c:1.28.2.31 php-src/sapi/nsapi/nsapi.c:1.28.2.32 --- php-src/sapi/nsapi/nsapi.c:1.28.2.31 Wed Sep 15 17:51:29 2004 +++ php-src/sapi/nsapi/nsapi.c Tue Sep 21 18:00:39 2004 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: nsapi.c,v 1.28.2.31 2004/09/15 21:51:29 thetaphi Exp $ */ +/* $Id: nsapi.c,v 1.28.2.32 2004/09/21 22:00:39 thetaphi Exp $ */ /* * PHP includes @@ -310,7 +310,7 @@ PHP_MINFO_FUNCTION(nsapi) { php_info_print_table_start(); - php_info_print_table_row(2, "NSAPI Module Revision", "$Revision: 1.28.2.31 $"); + php_info_print_table_row(2, "NSAPI Module Revision", "$Revision: 1.28.2.32 $"); php_info_print_table_row(2, "Server Software", system_version()); php_info_print_table_row(2, "Sub-requests with nsapi_virtual()", (nsapi_servact_service)?((zend_ini_long("zlib.output_compression", sizeof("zlib.output_compression"), 0))?"not supported with zlib.output_compression":"enabled"):"not supported on this platform" ); @@ -934,6 +934,8 @@ SG(sapi_headers).http_response_code = (error_directive) ? rq->status_num : 200; nsapi_php_ini_entries(NSLS_C TSRMLS_CC); + + if (!PG(safe_mode)) php_handle_auth_data(pblock_findval("authorization", rq->headers) TSRMLS_CC); file_handle.type = ZEND_HANDLE_FILENAME; file_handle.filename = SG(request_info).path_translated;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php