If we have not seen a user in *lastseen say we never seen them.

This commit is contained in:
Kyle Fuller
2011-03-28 22:34:58 +01:00
parent 4f89834934
commit f5665481fe
+1 -1
View File
@@ -64,7 +64,7 @@ public:
for (it = mUsers.begin(); it != mUsers.end(); ++it) {
Table.AddRow();
Table.SetCell("User", it->first);
Table.SetCell("Last Seen", FormatLastSeen(it->second));
Table.SetCell("Last Seen", FormatLastSeen(it->second, "never"));
}
PutModule(Table);