From 12a0311aaa783385bba3194e92ed0eb4665621ed Mon Sep 17 00:00:00 2001 From: Robby- Date: Tue, 24 Sep 2013 06:04:59 +0200 Subject: Add missing columns to os_forbid. Make most lists with dates use the shorter output format. --- modules/commands/cs_entrymsg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/commands/cs_entrymsg.cpp') diff --git a/modules/commands/cs_entrymsg.cpp b/modules/commands/cs_entrymsg.cpp index 3cf14e523..032d023eb 100644 --- a/modules/commands/cs_entrymsg.cpp +++ b/modules/commands/cs_entrymsg.cpp @@ -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); } -- cgit