From 55ae9a7d102570bfaef50e03ad990d432ba6de66 Mon Sep 17 00:00:00 2001
From: Justin Clark-Casey (justincc)
Date: Tue, 13 Jan 2015 20:15:37 +0000
Subject: Remove extraneous colon when setting TagId parameter in
 PGSQLUserProfilesData.GetUserAppData()

---
 OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
index 859c313..782a5bc 100644
--- a/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
+++ b/OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs
@@ -979,7 +979,7 @@ namespace OpenSim.Data.PGSQL
                     using (NpgsqlCommand cmd = new NpgsqlCommand(query, dbcon))
                     {
                         cmd.Parameters.Add(m_database.CreateParameter("Id", props.UserId));
-                        cmd.Parameters.Add(m_database.CreateParameter(":TagId", props.TagId));
+                        cmd.Parameters.Add(m_database.CreateParameter("TagId", props.TagId));
                         
                         using (NpgsqlDataReader reader = cmd.ExecuteReader(CommandBehavior.SingleRow))
                         {
-- 
cgit v1.1