diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs | 10 |
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 | { |