From 489a4752a51819e03ed90f4bb4d3499f4d8af9cf Mon Sep 17 00:00:00 2001 From: Melanie Date: Sun, 3 Jan 2010 03:24:06 +0000 Subject: Change the requester a little --- .../Services/Connectors/UserAccounts/UserAccountServiceConnector.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'OpenSim/Services/Connectors/UserAccounts') diff --git a/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs b/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs index 46313d9..076993e 100644 --- a/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs +++ b/OpenSim/Services/Connectors/UserAccounts/UserAccountServiceConnector.cs @@ -194,7 +194,10 @@ namespace OpenSim.Services.Connectors sendData["VERSIONMAX"] = ProtocolVersions.ClientProtocolVersionMax.ToString(); sendData["METHOD"] = "setaccount"; - sendData["account"] = data.ToKeyValuePairs(); + Dictionary structData = data.ToKeyValuePairs(); + + foreach (KeyValuePair kvp in structData) + sendData[kvp.Key] = kvp.Value.ToString(); return SendAndGetBoolReply(sendData); } -- cgit v1.1