* This may be broken.. it hasn't been tested, however I wanted to get the last database changes in before sdauge changes them significantly.

This commit is contained in:
Teravus Ovares
2008-01-09 18:57:03 +00:00
parent 7ba9c13fa8
commit 49fe4eb3cd
7 changed files with 242 additions and 6 deletions

View File

@@ -132,7 +132,13 @@ namespace OpenSim.Framework.Data.DB4o
return null;
}
}
public void StoreWebLoginKey(LLUUID AgentID, LLUUID WebLoginKey)
{
UserProfileData user = GetUserByUUID(AgentID);
user.webLoginKey = WebLoginKey;
UpdateUserProfile(user);
}
#region User Friends List Data
public void AddNewUserFriend(LLUUID friendlistowner, LLUUID friend, uint perms)