From 89f2e3e32a170fffa25204257407df331b229568 Mon Sep 17 00:00:00 2001 From: Praburaj Date: Tue, 3 Mar 2015 17:55:22 -0800 Subject: [PATCH] Removing check for NTLM altogether --- src/MusicStore/Views/Shared/_LoginPartial.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MusicStore/Views/Shared/_LoginPartial.cshtml b/src/MusicStore/Views/Shared/_LoginPartial.cshtml index 6abadf073f..6e072639c5 100644 --- a/src/MusicStore/Views/Shared/_LoginPartial.cshtml +++ b/src/MusicStore/Views/Shared/_LoginPartial.cshtml @@ -15,7 +15,7 @@ } } //Either NTLM will be used or social authentication will be used. Based on the authentication schemes enabled remove an unused block. -else if (User.Identity.IsAuthenticated && User.Identity.AuthenticationType == "NTLM") +else if (User.Identity.IsAuthenticated) { //This code block necessary only for NTLM authentication