* So, ok, maybe renaming serialized fields on a friday wasn't the smartest of things. Reverting 2056.

This commit is contained in:
lbsa71
2007-10-05 13:54:16 +00:00
parent 82bdf535df
commit d4a4aafaf1
12 changed files with 456 additions and 456 deletions

View File

@@ -83,7 +83,7 @@ namespace OpenSim.Framework.Data.DB4o
{
foreach (UserProfileData profile in manager.userProfiles.Values)
{
if (profile.Firstname == fname && profile.Lastname == lname)
if (profile.username == fname && profile.surname == lname)
return profile;
}
return null;
@@ -98,7 +98,7 @@ namespace OpenSim.Framework.Data.DB4o
{
try
{
return GetUserByUUID(uuid).CurrentAgent;
return GetUserByUUID(uuid).currentAgent;
}
catch (Exception)
{
@@ -126,7 +126,7 @@ namespace OpenSim.Framework.Data.DB4o
{
try
{
return GetUserByName(fname,lname).CurrentAgent;
return GetUserByName(fname,lname).currentAgent;
}
catch (Exception)
{