thetaphi                Mon Sep 20 09:30:13 2004 EDT

  Modified files:              
    /php-src/sapi/nsapi nsapi.c 
  Log:
  changed order of processing of ini entries
  
  
http://cvs.php.net/diff.php/php-src/sapi/nsapi/nsapi.c?r1=1.64&r2=1.65&ty=u
Index: php-src/sapi/nsapi/nsapi.c
diff -u php-src/sapi/nsapi/nsapi.c:1.64 php-src/sapi/nsapi/nsapi.c:1.65
--- php-src/sapi/nsapi/nsapi.c:1.64     Wed Sep 15 17:28:30 2004
+++ php-src/sapi/nsapi/nsapi.c  Mon Sep 20 09:30:13 2004
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: nsapi.c,v 1.64 2004/09/15 21:28:30 thetaphi Exp $ */
+/* $Id: nsapi.c,v 1.65 2004/09/20 13:30:13 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.64 $");
+       php_info_print_table_row(2, "NSAPI Module Revision", "$Revision: 1.65 $");
        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" );
@@ -933,9 +933,9 @@
        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);
+
+       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

Reply via email to