From 167c15db9d818710f16c65516c724e7ab2757334 Mon Sep 17 00:00:00 2001 From: Mic Bowman Date: Mon, 9 Nov 2009 21:22:02 -0800 Subject: Fixed XMLRPC return params Signed-off-by: Melanie --- OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Region/CoreModules/Scripting/XMLRPC') diff --git a/OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs b/OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs index 97899a7..27b64bf 100644 --- a/OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs +++ b/OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs @@ -689,7 +689,7 @@ namespace OpenSim.Region.CoreModules.Scripting.XMLRPC } if (respParms.Contains("IntValue")) { - Idata = Convert.ToInt32((string) respParms["IntValue"]); + Idata = Convert.ToInt32(respParms["IntValue"]); } if (respParms.Contains("faultString")) { -- cgit v1.1