diff --git a/features/http-auth.xml b/features/http-auth.xml index 859b6358bd..561d4b6fce 100644 --- a/features/http-auth.xml +++ b/features/http-auth.xml @@ -1,5 +1,5 @@ - + HTTP authentication with PHP @@ -163,11 +163,11 @@ should be left unchecked. - Another limitation is if you're using the IIS module (ISAPI), you may not - use the PHP_AUTH_* variables but instead, the variable - HTTP_AUTHORIZATION is available. For example, consider - the following code: list($user, $pw) = explode(':', - base64_decode(substr($_SERVER['HTTP_AUTHORIZATION'], 6))); + Another limitation is if you're using the IIS module (ISAPI) and PHP 4, you + may not use the PHP_AUTH_* variables but instead, the + variable HTTP_AUTHORIZATION is available. For example, + consider the following code: list($user, $pw) = explode(':', + base64_decode(substr($_SERVER['HTTP_AUTHORIZATION'], 6))); IIS Note: