aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/UserAccountService/GridUserService.cs
diff options
context:
space:
mode:
authorDiva Canto2012-09-25 20:03:49 -0700
committerDiva Canto2012-09-25 20:03:49 -0700
commitae58cf42242433c786162b53a2724962f4a8380b (patch)
treeb6011d3ea34e838138a63279ec5bf270c464d04d /OpenSim/Services/UserAccountService/GridUserService.cs
parentOops, that should be inside the curly bracket. (diff)
downloadopensim-SC_OLD-ae58cf42242433c786162b53a2724962f4a8380b.zip
opensim-SC_OLD-ae58cf42242433c786162b53a2724962f4a8380b.tar.gz
opensim-SC_OLD-ae58cf42242433c786162b53a2724962f4a8380b.tar.bz2
opensim-SC_OLD-ae58cf42242433c786162b53a2724962f4a8380b.tar.xz
TOS module. WARNING: migration in GridUser table.
Diffstat (limited to '')
-rw-r--r--OpenSim/Services/UserAccountService/GridUserService.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Services/UserAccountService/GridUserService.cs b/OpenSim/Services/UserAccountService/GridUserService.cs
index ac3d8fd..8eae859 100644
--- a/OpenSim/Services/UserAccountService/GridUserService.cs
+++ b/OpenSim/Services/UserAccountService/GridUserService.cs
@@ -70,6 +70,8 @@ namespace OpenSim.Services.UserAccountService
70 info.Login = Util.ToDateTime(Convert.ToInt32(d.Data["Login"])); 70 info.Login = Util.ToDateTime(Convert.ToInt32(d.Data["Login"]));
71 info.Logout = Util.ToDateTime(Convert.ToInt32(d.Data["Logout"])); 71 info.Logout = Util.ToDateTime(Convert.ToInt32(d.Data["Logout"]));
72 72
73 info.TOS = d.Data["TOS"];
74
73 return info; 75 return info;
74 } 76 }
75 77