Skip to content
Snippets Groups Projects
Commit 08ede81a authored by rswindell's avatar rswindell
Browse files

Don't let time online calculate as negative.

parent 7e06ca4b
No related branches found
No related tags found
No related merge requests found
......@@ -125,6 +125,7 @@ for(n=0;n<system.node_list.length;n++) {
,user.gender
));
t=time()-user.logontime;
if(t<0) t=0;
write(format(
"<td align=center>%u:%02u:%02u"
,Math.floor(t/(60*60))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment