diff options
author | Justin Clark-Casey (justincc) | 2015-01-13 19:20:27 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2015-01-13 19:20:27 +0000 |
commit | 0794a403783208fa1e137b624317f42ea65fbce7 (patch) | |
tree | 5229fc373c7af3e57bd823ca09fb45d2706bba7a /OpenSim/Data | |
parent | Remove quotes from column selection in PGSQLUserProfilesData.GetUserImageAsse... (diff) | |
download | opensim-SC-0794a403783208fa1e137b624317f42ea65fbce7.zip opensim-SC-0794a403783208fa1e137b624317f42ea65fbce7.tar.gz opensim-SC-0794a403783208fa1e137b624317f42ea65fbce7.tar.bz2 opensim-SC-0794a403783208fa1e137b624317f42ea65fbce7.tar.xz |
Remove misstaken quotes from column selection in PGSQLUserProfilesData.GetUserAppData()
Diffstat (limited to 'OpenSim/Data')
-rw-r--r-- | OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs index ec27534..859c313 100644 --- a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs +++ b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs | |||
@@ -968,8 +968,8 @@ namespace OpenSim.Data.PGSQL | |||
968 | string query = string.Empty; | 968 | string query = string.Empty; |
969 | 969 | ||
970 | query += "SELECT * FROM userdata WHERE "; | 970 | query += "SELECT * FROM userdata WHERE "; |
971 | query += "\"UserId\" = :Id AND "; | 971 | query += "UserId = :Id AND "; |
972 | query += "\"TagId\" = :TagId"; | 972 | query += "TagId = :TagId"; |
973 | 973 | ||
974 | try | 974 | try |
975 | { | 975 | { |