aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2015-01-13 21:52:43 +0000
committerJustin Clark-Casey (justincc)2015-01-13 21:52:43 +0000
commit38f2b892486d5155bfae02ff674bdafcacc5051c (patch)
tree5316bee0872f35086868b4a028e96c94946a8dbf
parentRevert "Remove quotes from column selection in PGSQLUserProfilesData.SetUserA... (diff)
downloadopensim-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.cs4
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 {