From d1b07ef26996b856fd01d61b93f5770ebde54d24 Mon Sep 17 00:00:00 2001 From: ptsurbeleu Date: Sat, 10 Mar 2012 12:30:47 -0800 Subject: [PATCH] Fixed a typo in the error message. --- .../Code/Common/UsernameAssertion.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/Common/UsernameAssertion.cs b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/Common/UsernameAssertion.cs index 97489d5f..fab3a2a3 100644 --- a/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/Common/UsernameAssertion.cs +++ b/WebsitePanel/Sources/WebsitePanel.EnterpriseServer/Code/Common/UsernameAssertion.cs @@ -232,7 +232,7 @@ namespace WebsitePanel.EnterpriseServer ); if (user == null) - throw new Exception("Authentication token is invalid or borken"); + throw new Exception("Authentication token is invalid or broken"); SecurityContext.SetThreadPrincipal(user); }