Remove quotes from column selection in PGSQLUserProfilesData.GetAvatarNotes()

This may have been preventing it from working.
sedebug
Justin Clark-Casey (justincc) 2015-01-13 18:50:34 +00:00
parent b38a552fd6
commit 0cc75a0a3c
1 changed files with 1 additions and 1 deletions

View File

@ -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();