Revert "Remove quotes from column selection in PGSQLUserProfilesData.UpdateAvatarInterests()"
This reverts commit f31feef6c1
.
sedebug
parent
39989eda3b
commit
8f37a61912
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue