Fixed XMLRPC return params

Signed-off-by: Melanie <melanie@t-data.com>
This commit is contained in:
Mic Bowman
2009-11-09 21:22:02 -08:00
committed by Melanie
parent ba99081bbe
commit 167c15db9d

View File

@@ -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"))
{