diff options
author | Melanie | 2013-12-07 01:08:49 +0000 |
---|---|---|
committer | Melanie | 2013-12-07 01:08:49 +0000 |
commit | 6d6b9ab791a6a759b2a3a8469569f536b3525894 (patch) | |
tree | 9b3a1a63f8b6bd4596d11904be04e667747601c7 /OpenSim/Data/MySQL | |
parent | Merge branch 'master' into careminster (diff) | |
parent | Adding profile partners fix to SQLite and PgSQL drivers (diff) | |
download | opensim-SC-6d6b9ab791a6a759b2a3a8469569f536b3525894.zip opensim-SC-6d6b9ab791a6a759b2a3a8469569f536b3525894.tar.gz opensim-SC-6d6b9ab791a6a759b2a3a8469569f536b3525894.tar.bz2 opensim-SC-6d6b9ab791a6a759b2a3a8469569f536b3525894.tar.xz |
Merge branch 'master' into careminster
Conflicts:
OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs
OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
OpenSim/Region/Framework/Scenes/ScenePresence.cs
Diffstat (limited to 'OpenSim/Data/MySQL')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLUserProfilesData.cs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/OpenSim/Data/MySQL/MySQLUserProfilesData.cs b/OpenSim/Data/MySQL/MySQLUserProfilesData.cs index 4c6c8e3..dc88f94 100644 --- a/OpenSim/Data/MySQL/MySQLUserProfilesData.cs +++ b/OpenSim/Data/MySQL/MySQLUserProfilesData.cs | |||
@@ -736,7 +736,6 @@ namespace OpenSim.Data.MySQL | |||
736 | string query = string.Empty; | 736 | string query = string.Empty; |
737 | 737 | ||
738 | query += "UPDATE userprofile SET "; | 738 | query += "UPDATE userprofile SET "; |
739 | query += "profilePartner=?profilePartner, "; | ||
740 | query += "profileURL=?profileURL, "; | 739 | query += "profileURL=?profileURL, "; |
741 | query += "profileImage=?image, "; | 740 | query += "profileImage=?image, "; |
742 | query += "profileAboutText=?abouttext,"; | 741 | query += "profileAboutText=?abouttext,"; |
@@ -752,7 +751,6 @@ namespace OpenSim.Data.MySQL | |||
752 | using (MySqlCommand cmd = new MySqlCommand(query, dbcon)) | 751 | using (MySqlCommand cmd = new MySqlCommand(query, dbcon)) |
753 | { | 752 | { |
754 | cmd.Parameters.AddWithValue("?profileURL", props.WebUrl); | 753 | cmd.Parameters.AddWithValue("?profileURL", props.WebUrl); |
755 | cmd.Parameters.AddWithValue("?profilePartner", props.PartnerId.ToString()); | ||
756 | cmd.Parameters.AddWithValue("?image", props.ImageId.ToString()); | 754 | cmd.Parameters.AddWithValue("?image", props.ImageId.ToString()); |
757 | cmd.Parameters.AddWithValue("?abouttext", props.AboutText); | 755 | cmd.Parameters.AddWithValue("?abouttext", props.AboutText); |
758 | cmd.Parameters.AddWithValue("?firstlifeimage", props.FirstLifeImageId.ToString()); | 756 | cmd.Parameters.AddWithValue("?firstlifeimage", props.FirstLifeImageId.ToString()); |