--- authentication_api.php~ Mon Dec 15 17:40:51 2003 +++ authentication_api.php Tue Dec 16 11:18:24 2003 @@ -107,7 +107,7 @@ if ( ! ( ON == $t_anon_allowed && $t_anon_account == $p_username ) ) { # anonymous login didn't work, so check the password - if ( ! auth_does_password_match( $t_user_id, $p_password ) ) { + if ( BASIC_AUTH != $t_login_method && ! auth_does_password_match( $t_user_id, $p_password ) ) { return false; } }