aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2015-01-13 18:47:51 +0000
committerJustin Clark-Casey (justincc)2015-01-13 18:47:51 +0000
commitb38a552fd69ab6eae16acbec26b2653de0aacbbc (patch)
tree61db86b5d97659faf32998034a8994836a5cf584 /OpenSim
parentminor: correct two exception messages in PGSQLUserProfilesData where I copy/p... (diff)
downloadopensim-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 'OpenSim')
-rw-r--r--OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs2
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