aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs')
-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 c8c8f19..ade12bf 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 {