diff options
author | Adam <Adam@anope.org> | 2011-04-23 05:01:10 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-05-16 04:07:30 -0400 |
commit | 6922bd239c778e8f6f2081476ce20b9426c515ad (patch) | |
tree | f428e0e5e8bfe638e1be0cdb5ea5b90360dd4d13 /modules/core/ms_ignore.cpp | |
parent | 13aa58ce5db50083c751648f87df31b3db8dc82f (diff) |
Fixed up the MySQL Query code and finished some command code I forgot earlier
Diffstat (limited to 'modules/core/ms_ignore.cpp')
-rw-r--r-- | modules/core/ms_ignore.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/ms_ignore.cpp b/modules/core/ms_ignore.cpp index 6747798d2..72a286a88 100644 --- a/modules/core/ms_ignore.cpp +++ b/modules/core/ms_ignore.cpp @@ -60,7 +60,7 @@ class CommandMSIgnore : public Command } else if (command.equals_ci("DEL") && !param.empty()) { - std::vector<ci::string>::iterator it = std::find(mi->ignores.begin(), mi->ignores.end(), param.ci_str()); + std::vector<Anope::string>::iterator it = std::find(mi->ignores.begin(), mi->ignores.end(), param.ci_str()); if (it != mi->ignores.end()) { |