aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2015-01-13 19:20:27 +0000
committerJustin Clark-Casey (justincc)2015-01-13 19:20:27 +0000
commit0794a403783208fa1e137b624317f42ea65fbce7 (patch)
tree5229fc373c7af3e57bd823ca09fb45d2706bba7a
parentRemove quotes from column selection in PGSQLUserProfilesData.GetUserImageAsse... (diff)
downloadopensim-SC_OLD-0794a403783208fa1e137b624317f42ea65fbce7.zip
opensim-SC_OLD-0794a403783208fa1e137b624317f42ea65fbce7.tar.gz
opensim-SC_OLD-0794a403783208fa1e137b624317f42ea65fbce7.tar.bz2
opensim-SC_OLD-0794a403783208fa1e137b624317f42ea65fbce7.tar.xz
Remove misstaken quotes from column selection in PGSQLUserProfilesData.GetUserAppData()
-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 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 {