Skip to content

Commit

Permalink
Renamed property CaseSensitive to UserAuthCaseSensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
issafram committed Apr 24, 2015
1 parent a8eb8c0 commit 24bff85
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Elmah.Mvc/AuthorizeAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ private bool UserIsAllowedByRole(System.Web.HttpContextBase httpContext)
private bool UserIsAllowedByName(System.Web.HttpContextBase httpContext)
{
var stringComparison = StringComparison.Ordinal;
if (!Settings.CaseSensitive)

if (!Settings.UserAuthCaseSensitive)
{
stringComparison = StringComparison.OrdinalIgnoreCase;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Elmah.Mvc/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static bool IgnoreDefaultRoute
get { return GetBoolValue("elmah.mvc.IgnoreDefaultRoute", false); }
}

public static bool CaseSensitive
public static bool UserAuthCaseSensitive
{
get
{
Expand Down

0 comments on commit 24bff85

Please sign in to comment.