aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2015-01-13 18:54:41 +0000
committerJustin Clark-Casey (justincc)2015-01-13 18:54:41 +0000
commitf31feef6c16cd79772e32b57a54f5cb6924a4df3 (patch)
treea50b61bfaa8ea889a5485cc1de8dda933f5b2013 /OpenSim/Data
parentRemove quotes from column selection in PGSQLUserProfilesData.UpdateAvatarProp... (diff)
downloadopensim-SC_OLD-f31feef6c16cd79772e32b57a54f5cb6924a4df3.zip
opensim-SC_OLD-f31feef6c16cd79772e32b57a54f5cb6924a4df3.tar.gz
opensim-SC_OLD-f31feef6c16cd79772e32b57a54f5cb6924a4df3.tar.bz2
opensim-SC_OLD-f31feef6c16cd79772e32b57a54f5cb6924a4df3.tar.xz
Remove quotes from column selection in PGSQLUserProfilesData.UpdateAvatarInterests()
This may have been preventing it from working. Relates to http://opensimulator.org/mantis/view.php?id=7398
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
index c0218a8..e87305c 100644
--- a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
+++ b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
@@ -756,12 +756,12 @@ namespace OpenSim.Data.PGSQL
756 string query = string.Empty; 756 string query = string.Empty;
757 757
758 query += "UPDATE userprofile SET "; 758 query += "UPDATE userprofile SET ";
759 query += "\"profileWantToMask\"=:WantMask, "; 759 query += "profileWantToMask=:WantMask, ";
760 query += "\"profileWantToText\"=:WantText,"; 760 query += "profileWantToText=:WantText,";
761 query += "\"profileSkillsMask\"=:SkillsMask,"; 761 query += "profileSkillsMask=:SkillsMask,";
762 query += "\"profileSkillsText\"=:SkillsText, "; 762 query += "profileSkillsText=:SkillsText, ";
763 query += "\"profileLanguages\"=:Languages "; 763 query += "profileLanguages=:Languages ";
764 query += "WHERE \"useruuid\"=:uuid"; 764 query += "WHERE useruuid=:uuid";
765 765
766 try 766 try
767 { 767 {