]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/channels.cpp
Fix bug #673, reported by Ankit: various cosmetic issues with filter. Patch from...
[user/henk/code/inspircd.git] / src / channels.cpp
index 7374f091e80997f1abbe9d6939b5abfd90a7a3ab..7a42bccbbb4ba201943cf9926a9022ddfd520a2f 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
@@ -25,8 +25,7 @@ Channel::Channel(InspIRCd* Instance, const std::string &cname, time_t ts) : Serv
 
        (*(ServerInstance->chanlist))[cname.c_str()] = this;
        this->name.assign(cname, 0, ServerInstance->Config->Limits.ChanMax);
-       this->created = ts ? ts : ServerInstance->Time();
-       this->age = this->created;
+       this->age = ts ? ts : ServerInstance->Time();
 
        maxbans = topicset = 0;
        modes.reset();
@@ -421,7 +420,7 @@ Channel* Channel::JoinUser(InspIRCd* Instance, User *user, const char* cn, bool
 }
 
 Channel* Channel::ForceChan(InspIRCd* Instance, Channel* Ptr, User* user, const std::string &privs, bool bursting)
-{      
+{
        std::string nick = user->nick;
        bool silent = false;
 
@@ -1198,4 +1197,3 @@ void Channel::RemoveAllPrefixes(User* user)
                prefixes.erase(n);
        }
 }
-