Fix status responses in remote admin

This commit is contained in:
Melanie
2010-12-03 19:02:42 +01:00
parent 8741676bc3
commit 4407c4700f

View File

@@ -2636,8 +2636,8 @@ namespace OpenSim.ApplicationPlugins.RemoteController
string text;
int health = scene.GetHealth(out flags, out text);
responseData["health"] = health;
responseData["flags"] = health;
responseData["message"] = health;
responseData["flags"] = flags;
responseData["message"] = text;
response.Value = responseData;
}