From 71d73777d98babbdff27b631ef469f74b2e6d06d Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Tue, 13 Jan 2015 21:53:28 +0000 Subject: Revert "Remove quotes from column selection in PGSQLUserProfilesData.UpdateAvatarProperties()" This reverts commit fdecf4f610fc42205cb77c1cfa51f3e3d61cfdc9. --- OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'OpenSim/Data/PGSQL') diff --git a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs index c8c8f19..ade12bf 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 { -- cgit v1.1