diff options
author | Justin Clark-Casey (justincc) | 2015-01-13 18:47:51 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2015-01-13 18:47:51 +0000 |
commit | b38a552fd69ab6eae16acbec26b2653de0aacbbc (patch) | |
tree | 61db86b5d97659faf32998034a8994836a5cf584 /OpenSim/Data | |
parent | minor: correct two exception messages in PGSQLUserProfilesData where I copy/p... (diff) | |
download | opensim-SC_OLD-b38a552fd69ab6eae16acbec26b2653de0aacbbc.zip opensim-SC_OLD-b38a552fd69ab6eae16acbec26b2653de0aacbbc.tar.gz opensim-SC_OLD-b38a552fd69ab6eae16acbec26b2653de0aacbbc.tar.bz2 opensim-SC_OLD-b38a552fd69ab6eae16acbec26b2653de0aacbbc.tar.xz |
Remove quotes from field selection in PGSQLUserProfilesData.GetAvatarPicks()
This may have been preventing it from working.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
308 | { | 308 | { |
309 | string query = string.Empty; | 309 | string query = string.Empty; |
310 | 310 | ||
311 | query += "SELECT \"pickuuid\",\"name\" FROM userpicks WHERE "; | 311 | query += "SELECT pickuuid, name FROM userpicks WHERE "; |
312 | query += "creatoruuid = :Id"; | 312 | query += "creatoruuid = :Id"; |
313 | OSDArray data = new OSDArray(); | 313 | OSDArray data = new OSDArray(); |
314 | 314 | ||