From 55e97dad74641b5ea9a1c05d92ec617e36f0243e Mon Sep 17 00:00:00 2001 From: Anders Bjerner Date: Sat, 6 Jan 2018 20:24:02 +0100 Subject: [PATCH] Fixed the xmldoc for UserService.Delete --- src/Umbraco.Core/Services/UserService.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Umbraco.Core/Services/UserService.cs b/src/Umbraco.Core/Services/UserService.cs index 89232f815e..a646b2d52a 100644 --- a/src/Umbraco.Core/Services/UserService.cs +++ b/src/Umbraco.Core/Services/UserService.cs @@ -228,9 +228,9 @@ namespace Umbraco.Core.Services } /// - /// Deletes an + /// Disables an /// - /// to Delete + /// to disable public void Delete(IUser membershipUser) { //disable @@ -712,7 +712,7 @@ namespace Umbraco.Core.Services /// Id of the User to retrieve /// public IProfile GetProfileById(int id) - { + { //This is called a TON. Go get the full user from cache which should already be IProfile var fullUser = GetUserById(id); var asProfile = fullUser as IProfile;