diff options
author | Diva Canto | 2013-02-25 10:24:28 -0800 |
---|---|---|
committer | Diva Canto | 2013-02-25 10:24:28 -0800 |
commit | f7aa018a783d2e04cdba6d23b9012695f1554061 (patch) | |
tree | 2cb1c0c4b454d6b90c4e0abef86d196cc7e9cda9 /OpenSim/Addons/Groups/Remote/GroupsServiceRobustConnector.cs | |
parent | More clarification on the [Groups] section (diff) | |
download | opensim-SC_OLD-f7aa018a783d2e04cdba6d23b9012695f1554061.zip opensim-SC_OLD-f7aa018a783d2e04cdba6d23b9012695f1554061.tar.gz opensim-SC_OLD-f7aa018a783d2e04cdba6d23b9012695f1554061.tar.bz2 opensim-SC_OLD-f7aa018a783d2e04cdba6d23b9012695f1554061.tar.xz |
Fixes mantis #6551 -- misspelled key name. Also fixed an issue with the roles cache.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Addons/Groups/Remote/GroupsServiceRobustConnector.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Addons/Groups/Remote/GroupsServiceRobustConnector.cs b/OpenSim/Addons/Groups/Remote/GroupsServiceRobustConnector.cs index 8c257ed..f991d01 100644 --- a/OpenSim/Addons/Groups/Remote/GroupsServiceRobustConnector.cs +++ b/OpenSim/Addons/Groups/Remote/GroupsServiceRobustConnector.cs | |||
@@ -371,7 +371,7 @@ namespace OpenSim.Groups | |||
371 | Dictionary<string, object> result = new Dictionary<string, object>(); | 371 | Dictionary<string, object> result = new Dictionary<string, object>(); |
372 | 372 | ||
373 | if (!request.ContainsKey("RequestingAgentID") || !request.ContainsKey("GroupID") || !request.ContainsKey("RoleID") || | 373 | if (!request.ContainsKey("RequestingAgentID") || !request.ContainsKey("GroupID") || !request.ContainsKey("RoleID") || |
374 | !request.ContainsKey("Name") || !request.ContainsKey("Descrption") || !request.ContainsKey("Title") || | 374 | !request.ContainsKey("Name") || !request.ContainsKey("Description") || !request.ContainsKey("Title") || |
375 | !request.ContainsKey("Powers") || !request.ContainsKey("OP")) | 375 | !request.ContainsKey("Powers") || !request.ContainsKey("OP")) |
376 | NullResult(result, "Bad network data"); | 376 | NullResult(result, "Bad network data"); |
377 | 377 | ||