diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-10-02 17:00:07 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-10-02 17:00:07 +0000 |
commit | ede5a089970691ee4a3edad7b6be4fd2504e2a12 (patch) | |
tree | 626a158aef1486baaf3657f4672b14edfb145b30 | |
parent | cf72e0d4726bf4bc27f711ea2473a7f27bf09105 (diff) |
nenolod, what craq were you smoking? this code was FINE, you broke it :P
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5399 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/m_remove.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp index 9966fbfb3..839530487 100644 --- a/src/modules/m_remove.cpp +++ b/src/modules/m_remove.cpp @@ -197,12 +197,12 @@ class RemoveBase } /* Build up the part reason string. */ - reason = "Removed by " + user->nick + ": " + reasonparam; + reason = std::string("Removed by ") + user->nick + ": " + reasonparam; channel->WriteChannelWithServ(ServerInstance->Config->ServerName, "NOTICE %s :%s removed %s from the channel", channel->name, user->nick, target->nick); target->WriteServ("NOTICE %s :*** %s removed you from %s with the message: %s", target->nick, user->nick, channel->name, reasonparam.c_str()); - if (!channel->PartUser(target, reason.str().c_str())) + if (!channel->PartUser(target, reason.c_str())) delete channel; } else |