Fix status responses in remote admin

avinationmerge
Melanie 2010-12-03 19:02:42 +01:00
parent 8741676bc3
commit 4407c4700f
1 changed files with 2 additions and 2 deletions

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;
}