diff options
author | Justin Clark-Casey (justincc) | 2015-01-13 21:53:18 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2015-01-13 21:53:18 +0000 |
commit | 8f37a61912d6c5624ebf7c913e3c3109804233a2 (patch) | |
tree | 9e857a40a21664edcdf004c667214e498a508235 | |
parent | Revert "Remove quotes from column selection in PGSQLUserProfilesData.GetUserI... (diff) | |
download | opensim-SC_OLD-8f37a61912d6c5624ebf7c913e3c3109804233a2.zip opensim-SC_OLD-8f37a61912d6c5624ebf7c913e3c3109804233a2.tar.gz opensim-SC_OLD-8f37a61912d6c5624ebf7c913e3c3109804233a2.tar.bz2 opensim-SC_OLD-8f37a61912d6c5624ebf7c913e3c3109804233a2.tar.xz |
Revert "Remove quotes from column selection in PGSQLUserProfilesData.UpdateAvatarInterests()"
This reverts commit f31feef6c16cd79772e32b57a54f5cb6924a4df3.
-rw-r--r-- | OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs index 734ef46..c8c8f19 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 | { |