aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Addons
diff options
context:
space:
mode:
authorUbitUmarov2016-11-09 22:39:52 +0000
committerUbitUmarov2016-11-09 22:39:52 +0000
commitd1baa3e0c3b1783a68061980ffd8b9693c5a474a (patch)
tree774fb5ae0be5e9b597c46af3b3b5f3e0c6a3f0d6 /OpenSim/Addons
parentstop warning about integer division cast to float (diff)
downloadopensim-SC_OLD-d1baa3e0c3b1783a68061980ffd8b9693c5a474a.zip
opensim-SC_OLD-d1baa3e0c3b1783a68061980ffd8b9693c5a474a.tar.gz
opensim-SC_OLD-d1baa3e0c3b1783a68061980ffd8b9693c5a474a.tar.bz2
opensim-SC_OLD-d1baa3e0c3b1783a68061980ffd8b9693c5a474a.tar.xz
fix some invalid string.format arguments
Diffstat (limited to 'OpenSim/Addons')
-rw-r--r--OpenSim/Addons/Groups/Remote/GroupsServiceRobustConnector.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Addons/Groups/Remote/GroupsServiceRobustConnector.cs b/OpenSim/Addons/Groups/Remote/GroupsServiceRobustConnector.cs
index 26e844e..d79e4fa 100644
--- a/OpenSim/Addons/Groups/Remote/GroupsServiceRobustConnector.cs
+++ b/OpenSim/Addons/Groups/Remote/GroupsServiceRobustConnector.cs
@@ -286,7 +286,7 @@ namespace OpenSim.Groups
286 string requestingAgentID = request["RequestingAgentID"].ToString(); 286 string requestingAgentID = request["RequestingAgentID"].ToString();
287 287
288 if (!m_GroupsService.RemoveAgentFromGroup(requestingAgentID, agentID, groupID)) 288 if (!m_GroupsService.RemoveAgentFromGroup(requestingAgentID, agentID, groupID))
289 NullResult(result, string.Format("Insufficient permissions.", agentID)); 289 NullResult(result, string.Format("Insufficient permissions. {0}", agentID));
290 else 290 else
291 result["RESULT"] = "true"; 291 result["RESULT"] = "true";
292 } 292 }