thetaphi                Wed Sep 15 17:51:30 2004 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src    NEWS 
    /php-src/sapi/nsapi nsapi.c 
  Log:
  Sorry REVERT bevor 4.3.9 is out because of not critical!!!!
  
  
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1247.2.727&r2=1.1247.2.728&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1247.2.727 php-src/NEWS:1.1247.2.728
--- php-src/NEWS:1.1247.2.727   Wed Sep 15 17:25:31 2004
+++ php-src/NEWS        Wed Sep 15 17:51:29 2004
@@ -8,7 +8,6 @@
   exhaustion. (Andrei)
 - Fixed bug with raw_post_data not getting set (Brian)
 - Fixed a file-descriptor leak with phpinfo() and other 'special' URLs (Zeev)
-- Fixed bug #29805 (HTTP Authentication Issues). (Uwe Schindler)
 - Fixed bug #29753 (mcal_fetch_event() allows 2nd argument to be optional).
   (Ilia, Vrana)
 - Fixed bug #29727 (Added missing CURL authentication directives). (Ilia)
http://cvs.php.net/diff.php/php-src/sapi/nsapi/nsapi.c?r1=1.28.2.30&r2=1.28.2.31&ty=u
Index: php-src/sapi/nsapi/nsapi.c
diff -u php-src/sapi/nsapi/nsapi.c:1.28.2.30 php-src/sapi/nsapi/nsapi.c:1.28.2.31
--- php-src/sapi/nsapi/nsapi.c:1.28.2.30        Wed Sep 15 17:25:31 2004
+++ php-src/sapi/nsapi/nsapi.c  Wed Sep 15 17:51:29 2004
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: nsapi.c,v 1.28.2.30 2004/09/15 21:25:31 thetaphi Exp $ */
+/* $Id: nsapi.c,v 1.28.2.31 2004/09/15 21:51:29 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.30 $");
+       php_info_print_table_row(2, "NSAPI Module Revision", "$Revision: 1.28.2.31 $");
        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" );
@@ -932,8 +932,6 @@
        SG(request_info).content_type = nsapi_strdup(content_type);
        SG(request_info).content_length = (content_length == NULL) ? 0 : 
strtoul(content_length, 0, 0);
        SG(sapi_headers).http_response_code = (error_directive) ? rq->status_num : 200;
-
-       if (!PG(safe_mode)) php_handle_auth_data(pblock_findval("authorization", 
rq->headers) TSRMLS_CC);
 
        nsapi_php_ini_entries(NSLS_C TSRMLS_CC);
 

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to