Revert "Remove quotes from column selection in PGSQLUserProfilesData.UpdateAvatarInterests()"

This reverts commit f31feef6c1.
sedebug
Justin Clark-Casey (justincc) 2015-01-13 21:53:18 +00:00
parent 39989eda3b
commit 8f37a61912
1 changed files with 6 additions and 6 deletions

View File

@ -756,12 +756,12 @@ namespace OpenSim.Data.PGSQL
string query = string.Empty; string query = string.Empty;
query += "UPDATE userprofile SET "; query += "UPDATE userprofile SET ";
query += "profileWantToMask=:WantMask, "; query += "\"profileWantToMask\"=:WantMask, ";
query += "profileWantToText=:WantText,"; query += "\"profileWantToText\"=:WantText,";
query += "profileSkillsMask=:SkillsMask,"; query += "\"profileSkillsMask\"=:SkillsMask,";
query += "profileSkillsText=:SkillsText, "; query += "\"profileSkillsText\"=:SkillsText, ";
query += "profileLanguages=:Languages "; query += "\"profileLanguages\"=:Languages ";
query += "WHERE useruuid=:uuid"; query += "WHERE \"useruuid\"=:uuid";
try try
{ {