From b38a552fd69ab6eae16acbec26b2653de0aacbbc Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Tue, 13 Jan 2015 18:47:51 +0000 Subject: Remove quotes from field selection in PGSQLUserProfilesData.GetAvatarPicks() This may have been preventing it from working. --- OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Data') diff --git a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs index 7974c78..76771f6 100644 --- a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs +++ b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs @@ -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(); -- cgit v1.1