diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs index a75cc60cb8..96598839c4 100644 --- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs +++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs @@ -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; }