Remove quotes from field selection in PGSQLUserProfilesData.GetAvatarPicks()

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

View File

@ -308,7 +308,7 @@ namespace OpenSim.Data.PGSQL
{
string query = string.Empty;
query += "SELECT \"pickuuid\",\"name\" FROM userpicks WHERE ";
query += "SELECT pickuuid, name FROM userpicks WHERE ";
query += "creatoruuid = :Id";
OSDArray data = new OSDArray();