diff options
-rw-r--r-- | OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs index e50dac6..f1b59bb 100644 --- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs +++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | |||
@@ -1225,7 +1225,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
1225 | { | 1225 | { |
1226 | GridUserInfo userInfo = m_application.SceneManager.CurrentOrFirstScene.GridUserService.GetGridUserInfo(account.PrincipalID.ToString()); | 1226 | GridUserInfo userInfo = m_application.SceneManager.CurrentOrFirstScene.GridUserService.GetGridUserInfo(account.PrincipalID.ToString()); |
1227 | if (userInfo != null) | 1227 | if (userInfo != null) |
1228 | responseData["lastlogin"] = userInfo.Login; | 1228 | responseData["lastlogin"] = Util.ToUnixTime(userInfo.Login); |
1229 | else | 1229 | else |
1230 | responseData["lastlogin"] = 0; | 1230 | responseData["lastlogin"] = 0; |
1231 | 1231 | ||