Fixed XMLRPC return params

Signed-off-by: Melanie <melanie@t-data.com>
0.6.8-post-fixes
Mic Bowman 2009-11-09 21:22:02 -08:00 committed by Melanie
parent ba99081bbe
commit 167c15db9d
1 changed files with 1 additions and 1 deletions

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