aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs')
-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 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 {