From 0cc75a0a3ce74b082aa003fe27255d0ce7f94904 Mon Sep 17 00:00:00 2001 From: "Justin Clark-Casey (justincc)" Date: Tue, 13 Jan 2015 18:50:34 +0000 Subject: [PATCH] Remove quotes from column selection in PGSQLUserProfilesData.GetAvatarNotes() This may have been preventing it from working. --- OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs index 76771f691e..037865b718 100644 --- a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs +++ b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs @@ -495,7 +495,7 @@ namespace OpenSim.Data.PGSQL { // WIP string query = string.Empty; - query += "SELECT \"notes\" FROM usernotes WHERE "; + query += "SELECT notes FROM usernotes WHERE "; query += "useruuid = :Id AND "; query += "targetuuid = :TargetId"; OSDArray data = new OSDArray();