diff options
author | foobar <sniper@php.net> | 2003-03-24 11:21:15 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-03-24 11:21:15 +0000 |
commit | d963292f6fc521a1c6342506a0819250205c245c (patch) | |
tree | 195d83ce426322c432aaff019a1731e9605ff2b0 /sapi/isapi | |
parent | 0353b50f807f2803e16fd18d995fda47d6d34e10 (diff) | |
download | php-git-d963292f6fc521a1c6342506a0819250205c245c.tar.gz |
This is AUTH_TYPE in every other SAPI.
Diffstat (limited to 'sapi/isapi')
-rw-r--r-- | sapi/isapi/php4isapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/isapi/php4isapi.c b/sapi/isapi/php4isapi.c index 36eaed7bc5..4851a8165b 100644 --- a/sapi/isapi/php4isapi.c +++ b/sapi/isapi/php4isapi.c @@ -447,7 +447,7 @@ static void sapi_isapi_register_zeus_variables(LPEXTENSION_CONTROL_BLOCK lpECB, } variable_len = ISAPI_SERVER_VAR_BUF_SIZE; if ( lpECB->GetServerVariable(lpECB->ConnID, "AUTH_TYPE", static_variable_buf, &variable_len) && static_variable_buf[0] ) { - php_register_variable( "PHP_AUTH_TYPE", static_variable_buf, track_vars_array TSRMLS_CC ); + php_register_variable( "AUTH_TYPE", static_variable_buf, track_vars_array TSRMLS_CC ); } /* And now, for the SSL variables (if applicable) */ |