diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-01-18 12:18:59 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-01-18 12:18:59 +0000 |
commit | 131870d884290b36d891c6e026c6c5bb79f84eef (patch) | |
tree | 5cf162d2eded5c40a783400be8721af32442ab40 /src | |
parent | c3f53132673cfe3a63db84745c3c1efe3f5373e1 (diff) |
Fix bug #673, reported by Ankit: various cosmetic issues with filter. Patch from Ankit.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10969 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_filter.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/modules/m_filter.cpp b/src/modules/m_filter.cpp index ec5293d95..2d113d55d 100644 --- a/src/modules/m_filter.cpp +++ b/src/modules/m_filter.cpp @@ -143,12 +143,13 @@ class CommandFilter : public Command /* Deleting a filter */ if (Base->DeleteFilter(parameters[0])) { - user->WriteServ("NOTICE %s :*** Deleted filter '%s'", user->nick.c_str(), parameters[0].c_str()); + user->WriteServ("NOTICE %s :*** Removed filter '%s'", user->nick.c_str(), parameters[0].c_str()); + ServerInstance->SNO->WriteToSnoMask('A', std::string("FILTER: ")+user->nick+" removed filter '"+parameters[0]+"'"); return CMD_SUCCESS; } else { - user->WriteServ("NOTICE %s :*** Filter '%s' not found on list.", user->nick.c_str(), parameters[0].c_str()); + user->WriteServ("NOTICE %s :*** Filter '%s' not found in list, try /stats s.", user->nick.c_str(), parameters[0].c_str()); return CMD_FAILURE; } } @@ -179,7 +180,7 @@ class CommandFilter : public Command } else { - this->TooFewParams(user, " When setting a gline type filter, a gline duration must be specified as the third parameter."); + this->TooFewParams(user, ": When setting a gline type filter, a gline duration must be specified as the third parameter."); return CMD_FAILURE; } } @@ -191,8 +192,11 @@ class CommandFilter : public Command if (result.first) { user->WriteServ("NOTICE %s :*** Added filter '%s', type '%s'%s%s, flags '%s', reason: '%s'", user->nick.c_str(), freeform.c_str(), - type.c_str(), (duration ? " duration: " : ""), (duration ? parameters[3].c_str() : ""), + type.c_str(), (duration ? ", duration " : ""), (duration ? parameters[3].c_str() : ""), flags.c_str(), reason.c_str()); + + ServerInstance->SNO->WriteToSnoMask('A', std::string("FILTER: ")+user->nick+" added filter '"+freeform+"', type '"+type+"', "+(duration ? "duration "+parameters[3]+", " : "")+"flags '"+flags+"', reason: "+reason); + return CMD_SUCCESS; } else |