Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Just a few spelling fixes. #3405

Merged
merged 4 commits into from
Oct 23, 2018
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ IF ERRORLEVEL 1 (

:error
ECHO.
ECHO Can not run build\build.ps1.
ECHO If this is due to a SecurityError then please refer to BUILD.md for help!
ECHO Cannot run build\build.ps1.
ECHO If this is due to a security error then please refer to BUILD.md for help!
skoomasteve marked this conversation as resolved.
Show resolved Hide resolved
ECHO.
6 changes: 3 additions & 3 deletions src/umbraco.providers/members/UmbracoMembershipProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ namespace umbraco.providers.members
/// <summary>
/// Custom Membership Provider for Umbraco Members (User authentication for Frontend applications NOT umbraco CMS)
/// </summary>
[Obsolete("This has been superceded by Umbraco.Web.Security.Providers.MembersMembershipProvider")]
[Obsolete("This has been superseded by Umbraco.Web.Security.Providers.MembersMembershipProvider")]
public class UmbracoMembershipProvider : UmbracoMembershipProviderBase, IUmbracoMemberTypeMembershipProvider
{
public UmbracoMembershipProvider()
Expand Down Expand Up @@ -111,7 +111,7 @@ public override bool AllowManuallyChangingPassword
/// <exception cref="T:System.ArgumentException">The name of the provider has a length of zero.</exception>
public override void Initialize(string name, NameValueCollection config)
{
// Intialize values from web.config
// Initialize values from web.config
if (config == null) throw new ArgumentNullException("config");

if (string.IsNullOrEmpty(name)) name = Constants.Conventions.Member.UmbracoMemberProviderName;
Expand Down Expand Up @@ -189,7 +189,7 @@ public override void Initialize(string name, NameValueCollection config)
/// </returns>
protected override bool PerformChangePassword(string username, string oldPassword, string newPassword)
{
//NOTE: due to backwards compatibilty reasons, this provider doesn't care about the old password and
//NOTE: due to backwards compatibility reasons, this provider doesn't care about the old password and
// allows simply setting the password manually so we don't really care about the old password.
// This is allowed based on the overridden AllowManuallyChangingPassword option.

Expand Down