diff options
author | Adam <Adam@anope.org> | 2012-10-02 22:59:20 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-10-02 22:59:20 -0400 |
commit | 47bc551485f46f6195850be1c2a5edb1d8998e30 (patch) | |
tree | 819429547978a437a591e499c00202f6f9566ee9 /src/channels.cpp | |
parent | 87478187af9f6f670ebf679ce7cc6cc29b21f7af (diff) |
Revert "Fix topiclock on inspircd"
This reverts commit 87478187af9f6f670ebf679ce7cc6cc29b21f7af.
Diffstat (limited to 'src/channels.cpp')
-rw-r--r-- | src/channels.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/channels.cpp b/src/channels.cpp index 78709ed59..c95e46373 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -910,12 +910,12 @@ void Channel::ChangeTopic(const Anope::string &user, const Anope::string &newtop { User *u = finduser(user); - ircdproto->SendTopic(this->ci->WhoSends(), this, newtopic, u ? u->nick : user, ts); - this->topic = newtopic; this->topic_setter = u ? u->nick : user; this->topic_time = ts; + ircdproto->SendTopic(this->ci->WhoSends(), this); + FOREACH_MOD(I_OnTopicUpdated, OnTopicUpdated(this, user, this->topic)); if (this->ci) |