Remove quotes from field selection in PGSQLUserProfilesData.GetAvatarPicks()

This may have been preventing it from working.
This commit is contained in:
Justin Clark-Casey (justincc)
2015-01-13 18:47:51 +00:00
parent 43b094f549
commit b38a552fd6

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