aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/PGSQL
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2015-01-13 18:50:34 +0000
committerJustin Clark-Casey (justincc)2015-01-13 18:50:34 +0000
commit0cc75a0a3ce74b082aa003fe27255d0ce7f94904 (patch)
tree4eb23c75249efef9b18777cea9f4c97d33ae2c7a /OpenSim/Data/PGSQL
parentRemove quotes from field selection in PGSQLUserProfilesData.GetAvatarPicks() (diff)
downloadopensim-SC_OLD-0cc75a0a3ce74b082aa003fe27255d0ce7f94904.zip
opensim-SC_OLD-0cc75a0a3ce74b082aa003fe27255d0ce7f94904.tar.gz
opensim-SC_OLD-0cc75a0a3ce74b082aa003fe27255d0ce7f94904.tar.bz2
opensim-SC_OLD-0cc75a0a3ce74b082aa003fe27255d0ce7f94904.tar.xz
Remove quotes from column selection in PGSQLUserProfilesData.GetAvatarNotes()
This may have been preventing it from working.
Diffstat (limited to 'OpenSim/Data/PGSQL')
-rw-r--r--OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
index 76771f6..037865b 100644
--- a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
+++ b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
@@ -495,7 +495,7 @@ namespace OpenSim.Data.PGSQL
495 { // WIP 495 { // WIP
496 string query = string.Empty; 496 string query = string.Empty;
497 497
498 query += "SELECT \"notes\" FROM usernotes WHERE "; 498 query += "SELECT notes FROM usernotes WHERE ";
499 query += "useruuid = :Id AND "; 499 query += "useruuid = :Id AND ";
500 query += "targetuuid = :TargetId"; 500 query += "targetuuid = :TargetId";
501 OSDArray data = new OSDArray(); 501 OSDArray data = new OSDArray();