Remove the core module extra profile settings support carried in with the latest
patches. We don't need it.avinationmerge
parent
e79fab91db
commit
1eecb34e62
|
@ -941,8 +941,8 @@ namespace OpenSim.Data.MySQL
|
||||||
using (MySqlCommand put = new MySqlCommand(query, dbcon))
|
using (MySqlCommand put = new MySqlCommand(query, dbcon))
|
||||||
{
|
{
|
||||||
|
|
||||||
put.Parameters.AddWithValue("?Email", pref.EMail);
|
// put.Parameters.AddWithValue("?Email", pref.EMail);
|
||||||
put.Parameters.AddWithValue("?uuid", pref.UserId.ToString());
|
// put.Parameters.AddWithValue("?uuid", pref.UserId.ToString());
|
||||||
|
|
||||||
put.ExecuteNonQuery();
|
put.ExecuteNonQuery();
|
||||||
}
|
}
|
||||||
|
|
|
@ -748,6 +748,7 @@ namespace OpenSim.Data.SQLite
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
public bool UpdateUserPreferences(ref UserPreferences pref, ref string result)
|
public bool UpdateUserPreferences(ref UserPreferences pref, ref string result)
|
||||||
{
|
{
|
||||||
string query = string.Empty;
|
string query = string.Empty;
|
||||||
|
@ -830,6 +831,7 @@ namespace OpenSim.Data.SQLite
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
public bool GetUserAppData(ref UserAppData props, ref string result)
|
public bool GetUserAppData(ref UserAppData props, ref string result)
|
||||||
{
|
{
|
||||||
|
|
|
@ -164,6 +164,7 @@ namespace OpenSim.Services.ProfilesService
|
||||||
}
|
}
|
||||||
#endregion Interests
|
#endregion Interests
|
||||||
|
|
||||||
|
/*
|
||||||
#region User Preferences
|
#region User Preferences
|
||||||
public bool UserPreferencesUpdate(ref UserPreferences pref, ref string result)
|
public bool UserPreferencesUpdate(ref UserPreferences pref, ref string result)
|
||||||
{
|
{
|
||||||
|
@ -235,6 +236,7 @@ namespace OpenSim.Services.ProfilesService
|
||||||
return ProfilesData.GetUserPreferences(ref pref, ref result);
|
return ProfilesData.GetUserPreferences(ref pref, ref result);
|
||||||
}
|
}
|
||||||
#endregion User Preferences
|
#endregion User Preferences
|
||||||
|
*/
|
||||||
|
|
||||||
#region Utility
|
#region Utility
|
||||||
public OSD AvatarImageAssetsRequest(UUID avatarId)
|
public OSD AvatarImageAssetsRequest(UUID avatarId)
|
||||||
|
|
Loading…
Reference in New Issue