diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-15 19:32:58 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-15 19:32:58 +0000 |
commit | c4625b09b0c229124c031e84df06f9031118fb84 (patch) | |
tree | 98fac1ac6d1d5c395526dba5223b4b292fc02842 /src/modules | |
parent | 674c868b225f0c2c0a8f7879dbaa322a8c539bec (diff) |
Fixed a minor bug in text formatting of errors
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1107 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_chanfilter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_chanfilter.cpp b/src/modules/m_chanfilter.cpp index c420027f6..24cec2b99 100644 --- a/src/modules/m_chanfilter.cpp +++ b/src/modules/m_chanfilter.cpp @@ -138,7 +138,7 @@ class ModuleChanFilter : public Module { if (*i == params[0]) { - WriteServ(user->fd,"937 %s %s :The word %s is already on the spamfilter list",user->nick, chan->name,params[0]); + WriteServ(user->fd,"937 %s %s :The word %s is already on the spamfilter list",user->nick, chan->name,params[0].c_str()); return -1; } } |