From 0794a403783208fa1e137b624317f42ea65fbce7 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Tue, 13 Jan 2015 19:20:27 +0000 Subject: Remove misstaken quotes from column selection in PGSQLUserProfilesData.GetUserAppData() --- OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs') 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 string query = string.Empty; query += "SELECT * FROM userdata WHERE "; - query += "\"UserId\" = :Id AND "; - query += "\"TagId\" = :TagId"; + query += "UserId = :Id AND "; + query += "TagId = :TagId"; try { -- cgit v1.1