From 29ff32779f5df813989c13f9723b55f1a316b487 Mon Sep 17 00:00:00 2001 From: Jos Groot Lipman Date: Tue, 14 Nov 2017 13:34:50 +0000 Subject: [PATCH] De 'Basic' van basic authentication hoort case-insensitive te zijn https://github.com/rails/rails/issues/21199 svn path=/Website/branches/v2017.2/; revision=35988 --- APPL/AUT/loginTry.asp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/APPL/AUT/loginTry.asp b/APPL/AUT/loginTry.asp index 2ec4e50dfe..b6150f5569 100644 --- a/APPL/AUT/loginTry.asp +++ b/APPL/AUT/loginTry.asp @@ -87,7 +87,7 @@ if (user_key < 0) if (user_key < 0) { var auth = String(Request.ServerVariables("HTTP_AUTHORIZATION")); - if (auth.match(/^Basic /)) + if (auth.match(/^Basic /i)) { var b64 = auth.substring(6); var plain = decode_b64(b64);