Fixed XMLRPC return params
Signed-off-by: Melanie <melanie@t-data.com>0.6.8-post-fixes
parent
ba99081bbe
commit
167c15db9d
|
@ -689,7 +689,7 @@ namespace OpenSim.Region.CoreModules.Scripting.XMLRPC
|
||||||
}
|
}
|
||||||
if (respParms.Contains("IntValue"))
|
if (respParms.Contains("IntValue"))
|
||||||
{
|
{
|
||||||
Idata = Convert.ToInt32((string) respParms["IntValue"]);
|
Idata = Convert.ToInt32(respParms["IntValue"]);
|
||||||
}
|
}
|
||||||
if (respParms.Contains("faultString"))
|
if (respParms.Contains("faultString"))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue