aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_censor.cpp
diff options
context:
space:
mode:
authorGravatar attilamolnar2012-10-06 21:43:20 +0200
committerGravatar attilamolnar2012-11-12 21:48:42 +0100
commita4db7bf9af00b32d4f5c1922997d02b0b8be59e5 (patch)
tree2fd4c4ee2344300285f919968760f27f9ca41df4 /src/modules/m_censor.cpp
parentm_operprefix Enhance compatibility with m_hideoper using a ModeWatcher (diff)
Remove usage of the deprecated ConfigReader
Diffstat (limited to 'src/modules/m_censor.cpp')
-rw-r--r--src/modules/m_censor.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/modules/m_censor.cpp b/src/modules/m_censor.cpp
index bbf061f7e..03a211ad8 100644
--- a/src/modules/m_censor.cpp
+++ b/src/modules/m_censor.cpp
@@ -123,14 +123,15 @@ class ModuleCensor : public Module
* reload our config file on rehash - we must destroy and re-allocate the classes
* to call the constructor again and re-read our data.
*/
- ConfigReader MyConf;
censors.clear();
- for (int index = 0; index < MyConf.Enumerate("badword"); index++)
+ ConfigTagList badwords = ServerInstance->Config->ConfTags("badword");
+ for (ConfigIter i = badwords.first; i != badwords.second; ++i)
{
- std::string str = MyConf.ReadValue("badword","text",index);
+ ConfigTag* tag = i->second;
+ std::string str = tag->getString("text");
irc::string pattern(str.c_str());
- str = MyConf.ReadValue("badword","replace",index);
+ str = tag->getString("replace");
censors[pattern] = irc::string(str.c_str());
}
}