Skip to content

Commit

Permalink
Added default exclusion for the lowercase URL's if the verification c…
Browse files Browse the repository at this point in the history
…ode is there (#4418)
  • Loading branch information
mitchelsellers committed Jan 19, 2021
1 parent 4eaa5e6 commit 3521b0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DNN Platform/Library/Entities/Urls/FriendlyUrlSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ public bool ForceLowerCase

public string ForceLowerCaseRegex
{
get { return this._forceLowerCaseRegex ?? (this._forceLowerCaseRegex = this.GetStringSetting(PreventLowerCaseUrlRegexSetting, string.Empty)); }
get { return this._forceLowerCaseRegex ?? (this._forceLowerCaseRegex = this.GetStringSetting(PreventLowerCaseUrlRegexSetting, @"\bverificationcode\b")); }
internal set { this._forceLowerCaseRegex = value; }
}

Expand Down

0 comments on commit 3521b0a

Please sign in to comment.