]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/channels.cpp
Add a note about interfaces that may be useful
[user/henk/code/inspircd.git] / src / channels.cpp
index 2140a37aea1ae9919f841bbcbd23ad39ff5de95d..793bfb4291761f22e048e6885e5719eccf887571 100644 (file)
@@ -26,7 +26,7 @@ Channel::Channel(InspIRCd* Instance, const std::string &cname, time_t ts) : Serv
 
        (*(ServerInstance->chanlist))[cname.c_str()] = this;
        strlcpy(this->name, cname.c_str(), CHANMAX);
-       this->created = ts ? ts : ServerInstance->Time(true);
+       this->created = ts ? ts : ServerInstance->Time();
        this->age = this->created;