diff options
author | Justin Clark-Casey (justincc) | 2015-01-13 18:50:34 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2015-01-13 18:50:34 +0000 |
commit | 0cc75a0a3ce74b082aa003fe27255d0ce7f94904 (patch) | |
tree | 4eb23c75249efef9b18777cea9f4c97d33ae2c7a /OpenSim/Data | |
parent | Remove quotes from field selection in PGSQLUserProfilesData.GetAvatarPicks() (diff) | |
download | opensim-SC-0cc75a0a3ce74b082aa003fe27255d0ce7f94904.zip opensim-SC-0cc75a0a3ce74b082aa003fe27255d0ce7f94904.tar.gz opensim-SC-0cc75a0a3ce74b082aa003fe27255d0ce7f94904.tar.bz2 opensim-SC-0cc75a0a3ce74b082aa003fe27255d0ce7f94904.tar.xz |
Remove quotes from column selection in PGSQLUserProfilesData.GetAvatarNotes()
This may have been preventing it from working.
Diffstat (limited to 'OpenSim/Data')
-rw-r--r-- | OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs | 2 |
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(); |