summaryrefslogtreecommitdiff
path: root/src/modules/m_alltime.cpp
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2014-06-13 00:09:34 +0100
committerAttila Molnar <attilamolnar@hush.com>2014-06-25 14:41:01 +0200
commit1cf85908164d97dfa385c75b9f817905a8a75e78 (patch)
treedd6598cebcf92d2d78304046960cf3d85ee78e72 /src/modules/m_alltime.cpp
parentda9adf9e29a1e7e0f914b494972013d0c0c35672 (diff)
Add parameter to InspIRCd::TimeString for UTC time formats.
Missing doc added by @attilamolnar
Diffstat (limited to 'src/modules/m_alltime.cpp')
-rw-r--r--src/modules/m_alltime.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_alltime.cpp b/src/modules/m_alltime.cpp
index ceee4abbc..075064c62 100644
--- a/src/modules/m_alltime.cpp
+++ b/src/modules/m_alltime.cpp
@@ -31,7 +31,7 @@ class CommandAlltime : public Command
CmdResult Handle(const std::vector<std::string> &parameters, User *user)
{
- const std::string fmtdate = InspIRCd::TimeString(ServerInstance->Time(), "%Y-%m-%d %H:%M:%S");
+ const std::string fmtdate = InspIRCd::TimeString(ServerInstance->Time(), "%Y-%m-%d %H:%M:%S", true);
std::string msg = ":" + ServerInstance->Config->ServerName + " NOTICE " + user->nick + " :System time is " + fmtdate + " (" + ConvToStr(ServerInstance->Time()) + ") on " + ServerInstance->Config->ServerName;