aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2015-01-13 20:15:37 +0000
committerJustin Clark-Casey (justincc)2015-01-13 20:15:37 +0000
commit55ae9a7d102570bfaef50e03ad990d432ba6de66 (patch)
tree5318dc15c6106cced863e7b699a555d63c47f0a3 /OpenSim
parentFix bug where gathering the clientstack..OutgoingPacketsQueuedCount stat woul... (diff)
downloadopensim-SC_OLD-55ae9a7d102570bfaef50e03ad990d432ba6de66.zip
opensim-SC_OLD-55ae9a7d102570bfaef50e03ad990d432ba6de66.tar.gz
opensim-SC_OLD-55ae9a7d102570bfaef50e03ad990d432ba6de66.tar.bz2
opensim-SC_OLD-55ae9a7d102570bfaef50e03ad990d432ba6de66.tar.xz
Remove extraneous colon when setting TagId parameter in PGSQLUserProfilesData.GetUserAppData()
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Data/PGSQL/PGSQLUserProfilesData.cs2
1 files changed, 1 insertions, 1 deletions
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
979 using (NpgsqlCommand cmd = new NpgsqlCommand(query, dbcon)) 979 using (NpgsqlCommand cmd = new NpgsqlCommand(query, dbcon))
980 { 980 {
981 cmd.Parameters.Add(m_database.CreateParameter("Id", props.UserId)); 981 cmd.Parameters.Add(m_database.CreateParameter("Id", props.UserId));
982 cmd.Parameters.Add(m_database.CreateParameter(":TagId", props.TagId)); 982 cmd.Parameters.Add(m_database.CreateParameter("TagId", props.TagId));
983 983
984 using (NpgsqlDataReader reader = cmd.ExecuteReader(CommandBehavior.SingleRow)) 984 using (NpgsqlDataReader reader = cmd.ExecuteReader(CommandBehavior.SingleRow))
985 { 985 {