diff options
author | Justin Clark-Casey (justincc) | 2015-01-13 21:53:28 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2015-01-13 21:53:28 +0000 |
commit | 71d73777d98babbdff27b631ef469f74b2e6d06d (patch) | |
tree | b66c1b3cab95bb42560aec0be4accc4e71711771 | |
parent | Revert "Remove quotes from column selection in PGSQLUserProfilesData.UpdateAv... (diff) | |
download | opensim-SC_OLD-71d73777d98babbdff27b631ef469f74b2e6d06d.zip opensim-SC_OLD-71d73777d98babbdff27b631ef469f74b2e6d06d.tar.gz opensim-SC_OLD-71d73777d98babbdff27b631ef469f74b2e6d06d.tar.bz2 opensim-SC_OLD-71d73777d98babbdff27b631ef469f74b2e6d06d.tar.xz |
Revert "Remove quotes from column selection in PGSQLUserProfilesData.UpdateAvatarProperties()"
This reverts commit fdecf4f610fc42205cb77c1cfa51f3e3d61cfdc9.
-rw-r--r-- | OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs | 12 |
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 | { |