]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_alltime.cpp
Chain ValidateServerName onto ValidateHostname so that the servername gets hostname...
[user/henk/code/inspircd.git] / src / modules / m_alltime.cpp
index b5f4968d0bd174a021b69d2ade4d2f1be728bf05..5254025417a8d5d8f45c0886c00397c4413ad42c 100644 (file)
@@ -25,19 +25,14 @@ class CommandAlltime : public Command
                translation.push_back(TR_END);
        }
 
-       CmdResult Handle(const char **parameters, int pcnt, User *user)
+       CmdResult Handle(const char* const* parameters, int pcnt, User *user)
        {
                char fmtdate[64];
-               char fmtdate2[64];
-               time_t now = ServerInstance->Time(false);
-               strftime(fmtdate, sizeof(fmtdate), "%F %T", gmtime(&now));
-               now = ServerInstance->Time(true);
-               strftime(fmtdate2, sizeof(fmtdate2), "%F %T", gmtime(&now));
-               
-               int delta = ServerInstance->GetTimeDelta();
-               
+               time_t now = ServerInstance->Time();
+               strftime(fmtdate, sizeof(fmtdate), "%Y-%m-%d %H:%M:%S", gmtime(&now));
+
                std::string msg = ":" + std::string(ServerInstance->Config->ServerName) + " NOTICE " + user->nick + " :System time for " +
-                       ServerInstance->Config->ServerName + " is: " + fmtdate + " (delta " + ConvToStr(delta) + " seconds): Time with delta: "+ fmtdate2;
+                       ServerInstance->Config->ServerName + " is: " + fmtdate;
                
                if (IS_LOCAL(user))
                {
@@ -45,11 +40,7 @@ class CommandAlltime : public Command
                }
                else
                {
-                       std::deque<std::string> params;
-                       params.push_back(user->nick);
-                       params.push_back(msg);
-                       Event ev((char *) &params, NULL, "send_push");
-                       ev.Send(ServerInstance);
+                       ServerInstance->PI->PushToClient(user, msg);
                }
 
                /* we want this routed out! */
@@ -76,7 +67,7 @@ class Modulealltime : public Module
        
        virtual Version GetVersion()
        {
-               return Version(1, 0, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version(1, 2, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
        }
        
 };