diff options
author | Mic Bowman | 2009-11-09 21:22:02 -0800 |
---|---|---|
committer | Melanie | 2009-11-10 04:14:41 +0000 |
commit | 167c15db9d818710f16c65516c724e7ab2757334 (patch) | |
tree | 9d35ceba37ddd3459340d06a1631dd060de5b130 /OpenSim/Region | |
parent | Add IScriptModuleComms interface and region module to handle dispatch of (diff) | |
download | opensim-SC_OLD-167c15db9d818710f16c65516c724e7ab2757334.zip opensim-SC_OLD-167c15db9d818710f16c65516c724e7ab2757334.tar.gz opensim-SC_OLD-167c15db9d818710f16c65516c724e7ab2757334.tar.bz2 opensim-SC_OLD-167c15db9d818710f16c65516c724e7ab2757334.tar.xz |
Fixed XMLRPC return params
Signed-off-by: Melanie <melanie@t-data.com>
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/XMLRPC/XMLRPCModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
689 | } | 689 | } |
690 | if (respParms.Contains("IntValue")) | 690 | if (respParms.Contains("IntValue")) |
691 | { | 691 | { |
692 | Idata = Convert.ToInt32((string) respParms["IntValue"]); | 692 | Idata = Convert.ToInt32(respParms["IntValue"]); |
693 | } | 693 | } |
694 | if (respParms.Contains("faultString")) | 694 | if (respParms.Contains("faultString")) |
695 | { | 695 | { |