Revert "Remove quotes from column selection in PGSQLUserProfilesData.UpdateAvatarProperties()"
This reverts commit fdecf4f610
.
sedebug
parent
8f37a61912
commit
71d73777d9
|
@ -713,12 +713,12 @@ namespace OpenSim.Data.PGSQL
|
||||||
string query = string.Empty;
|
string query = string.Empty;
|
||||||
|
|
||||||
query += "UPDATE userprofile SET ";
|
query += "UPDATE userprofile SET ";
|
||||||
query += "profileURL=:profileURL, ";
|
query += "\"profileURL\"=:profileURL, ";
|
||||||
query += "profileImage=:image, ";
|
query += "\"profileImage\"=:image, ";
|
||||||
query += "profileAboutText=:abouttext,";
|
query += "\"profileAboutText\"=:abouttext,";
|
||||||
query += "profileFirstImage=:firstlifeimage,";
|
query += "\"profileFirstImage\"=:firstlifeimage,";
|
||||||
query += "profileFirstText=:firstlifetext ";
|
query += "\"profileFirstText\"=:firstlifetext ";
|
||||||
query += "WHERE useruuid=:uuid";
|
query += "WHERE \"useruuid\"=:uuid";
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue