mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 17:08:47 +08:00
Email confirmation fail on multiple confirmation attempts (#8656)
If an user already confirmed his email address and tries to confirm it again it should fail.
This commit is contained in:
parent
7ac17272d2
commit
d5acf2dc41
@ -120,7 +120,11 @@ namespace Orchard.Users.Services {
|
||||
var user = _membershipService.GetUser(username);
|
||||
if (user == null)
|
||||
return null;
|
||||
|
||||
|
||||
if (user.As<UserPart>().EmailStatus == UserStatus.Approved) {
|
||||
return null;
|
||||
}
|
||||
|
||||
user.As<UserPart>().EmailStatus = UserStatus.Approved;
|
||||
|
||||
return user;
|
||||
@ -195,4 +199,4 @@ namespace Orchard.Users.Services {
|
||||
return user;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user