Changes some of the naming conventions for the underlying membership provider services bits.

This commit is contained in:
Shannon
2014-02-21 16:03:32 +11:00
parent 750f7a6b33
commit c677f36f08
16 changed files with 95 additions and 95 deletions

View File

@@ -58,7 +58,7 @@ namespace Umbraco.Core.Services
IContent[] allVersions = null;
int totalUsers;
var allUsers = _userService.GetAllMembers(0, int.MaxValue, out totalUsers);
var allUsers = _userService.GetAll(0, int.MaxValue, out totalUsers);
foreach (var u in allUsers)
{
if (u.IsApproved == false) continue;