diff options
author | Adam <Adam@anope.org> | 2010-10-03 15:59:19 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-10-03 15:59:19 -0400 |
commit | 632f8df76b31f1300e7ac72890567834eac5511e (patch) | |
tree | c8566121ac3ab41e7eeaed390be80f5a9ad9bc97 /modules/protocol/inspircd12.cpp | |
parent | 663a8b9a1c704bec8e15ec1cf21d716df2db00e7 (diff) |
Fixed checking the global block in the config to work ok, fixed having non-core service bots logging messages, fixed setting the topic to the topic setter on inspircd12/20, and fixed logging status mode changes on ts6 ircds
Diffstat (limited to 'modules/protocol/inspircd12.cpp')
-rw-r--r-- | modules/protocol/inspircd12.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/inspircd12.cpp b/modules/protocol/inspircd12.cpp index dea238897..9e8eef8c8 100644 --- a/modules/protocol/inspircd12.cpp +++ b/modules/protocol/inspircd12.cpp @@ -319,7 +319,7 @@ int anope_event_ftopic(const Anope::string &source, int ac, const char **av) return MOD_CONT; } - c->ChangeTopicInternal(av[2], av[2], Anope::string(av[1]).is_pos_number_only() ? convertTo<time_t>(av[1]) : Anope::CurTime); + c->ChangeTopicInternal(av[2], av[3], Anope::string(av[1]).is_pos_number_only() ? convertTo<time_t>(av[1]) : Anope::CurTime); return MOD_CONT; } |