1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 07:26:38 +02:00

Add missing columns to os_forbid. Make most lists with dates use the shorter output format.

This commit is contained in:
Robby-
2013-09-24 06:04:59 +02:00
committed by Adam
parent cf653fc084
commit 12a0311aaa
10 changed files with 29 additions and 28 deletions
+1 -1
View File
@@ -118,7 +118,7 @@ class CommandEntryMessage : public Command
ListFormatter::ListEntry entry;
entry["Number"] = stringify(i + 1);
entry["Creator"] = msg->creator;
entry["Created"] = Anope::strftime(msg->when, source.GetAccount());
entry["Created"] = Anope::strftime(msg->when, NULL, true);
entry["Message"] = msg->message;
list.AddEntry(entry);
}