diff options
author | Justin Clark-Casey (justincc) | 2015-01-13 21:52:43 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2015-01-13 21:52:43 +0000 |
commit | 38f2b892486d5155bfae02ff674bdafcacc5051c (patch) | |
tree | 5316bee0872f35086868b4a028e96c94946a8dbf | |
parent | Revert "Remove quotes from column selection in PGSQLUserProfilesData.SetUserA... (diff) | |
download | opensim-SC_OLD-38f2b892486d5155bfae02ff674bdafcacc5051c.zip opensim-SC_OLD-38f2b892486d5155bfae02ff674bdafcacc5051c.tar.gz opensim-SC_OLD-38f2b892486d5155bfae02ff674bdafcacc5051c.tar.bz2 opensim-SC_OLD-38f2b892486d5155bfae02ff674bdafcacc5051c.tar.xz |
Revert "Remove misstaken quotes from column selection in PGSQLUserProfilesData.GetUserAppData()"
This reverts commit 0794a403783208fa1e137b624317f42ea65fbce7.
-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 48dd4f0..18acef6 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 | { |