aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2015-01-13 20:27:37 +0000
committerJustin Clark-Casey (justincc)2015-01-13 20:27:37 +0000
commit59c0df962a9dcac896cae2ce9b908be37047825c (patch)
treed2659efd00ebdd15fd500fa7ab1f80e74a029de2 /OpenSim
parentRemove extraneous colon when setting TagId parameter in PGSQLUserProfilesData... (diff)
downloadopensim-SC_OLD-59c0df962a9dcac896cae2ce9b908be37047825c.zip
opensim-SC_OLD-59c0df962a9dcac896cae2ce9b908be37047825c.tar.gz
opensim-SC_OLD-59c0df962a9dcac896cae2ce9b908be37047825c.tar.bz2
opensim-SC_OLD-59c0df962a9dcac896cae2ce9b908be37047825c.tar.xz
Remove quotes from column selection in PGSQLUserProfilesData.SetUserAppData()
This may have been preventing it from working.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
index 782a5bc..e799eb8 100644
--- a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
+++ b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
@@ -1026,11 +1026,11 @@ namespace OpenSim.Data.PGSQL
1026 string query = string.Empty; 1026 string query = string.Empty;
1027 1027
1028 query += "UPDATE userdata SET "; 1028 query += "UPDATE userdata SET ";
1029 query += "\"TagId\" = :TagId, "; 1029 query += "TagId = :TagId, ";
1030 query += "\"DataKey\" = :DataKey, "; 1030 query += "DataKey = :DataKey, ";
1031 query += "\"DataVal\" = :DataVal WHERE "; 1031 query += "DataVal = :DataVal WHERE ";
1032 query += "\"UserId\" = :UserId AND "; 1032 query += "UserId = :UserId AND ";
1033 query += "\"TagId\" = :TagId"; 1033 query += "TagId = :TagId";
1034 1034
1035 try 1035 try
1036 { 1036 {