aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2015-01-13 18:52:49 +0000
committerJustin Clark-Casey (justincc)2015-01-13 18:52:49 +0000
commitfdecf4f610fc42205cb77c1cfa51f3e3d61cfdc9 (patch)
treea5466f0e4817b23bf748c9cbff6626da2006b033
parentRemove quotes from column selection in PGSQLUserProfilesData.GetAvatarNotes() (diff)
downloadopensim-SC_OLD-fdecf4f610fc42205cb77c1cfa51f3e3d61cfdc9.zip
opensim-SC_OLD-fdecf4f610fc42205cb77c1cfa51f3e3d61cfdc9.tar.gz
opensim-SC_OLD-fdecf4f610fc42205cb77c1cfa51f3e3d61cfdc9.tar.bz2
opensim-SC_OLD-fdecf4f610fc42205cb77c1cfa51f3e3d61cfdc9.tar.xz
Remove quotes from column selection in PGSQLUserProfilesData.UpdateAvatarProperties()
This may have been preventing it from working.
-rw-r--r--OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
index 037865b..c0218a8 100644
--- a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
+++ b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
@@ -713,12 +713,12 @@ namespace OpenSim.Data.PGSQL
713 string query = string.Empty; 713 string query = string.Empty;
714 714
715 query += "UPDATE userprofile SET "; 715 query += "UPDATE userprofile SET ";
716 query += "\"profileURL\"=:profileURL, "; 716 query += "profileURL=:profileURL, ";
717 query += "\"profileImage\"=:image, "; 717 query += "profileImage=:image, ";
718 query += "\"profileAboutText\"=:abouttext,"; 718 query += "profileAboutText=:abouttext,";
719 query += "\"profileFirstImage\"=:firstlifeimage,"; 719 query += "profileFirstImage=:firstlifeimage,";
720 query += "\"profileFirstText\"=:firstlifetext "; 720 query += "profileFirstText=:firstlifetext ";
721 query += "WHERE \"useruuid\"=:uuid"; 721 query += "WHERE useruuid=:uuid";
722 722
723 try 723 try
724 { 724 {