From fdecf4f610fc42205cb77c1cfa51f3e3d61cfdc9 Mon Sep 17 00:00:00 2001 From: "Justin Clark-Casey (justincc)" Date: Tue, 13 Jan 2015 18:52:49 +0000 Subject: [PATCH] Remove quotes from column selection in PGSQLUserProfilesData.UpdateAvatarProperties() This may have been preventing it from working. --- OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs index 037865b718..c0218a86c2 100644 --- a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs +++ b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs @@ -713,12 +713,12 @@ namespace OpenSim.Data.PGSQL string query = string.Empty; query += "UPDATE userprofile SET "; - query += "\"profileURL\"=:profileURL, "; - query += "\"profileImage\"=:image, "; - query += "\"profileAboutText\"=:abouttext,"; - query += "\"profileFirstImage\"=:firstlifeimage,"; - query += "\"profileFirstText\"=:firstlifetext "; - query += "WHERE \"useruuid\"=:uuid"; + query += "profileURL=:profileURL, "; + query += "profileImage=:image, "; + query += "profileAboutText=:abouttext,"; + query += "profileFirstImage=:firstlifeimage,"; + query += "profileFirstText=:firstlifetext "; + query += "WHERE useruuid=:uuid"; try {