aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_showwhois.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_showwhois.cpp
parentm_operprefix Enhance compatibility with m_hideoper using a ModeWatcher (diff)
downloadinspircd++-a4db7bf9af00b32d4f5c1922997d02b0b8be59e5.tar.gz
inspircd++-a4db7bf9af00b32d4f5c1922997d02b0b8be59e5.tar.bz2
inspircd++-a4db7bf9af00b32d4f5c1922997d02b0b8be59e5.zip
Remove usage of the deprecated ConfigReader
Diffstat (limited to 'src/modules/m_showwhois.cpp')
-rw-r--r--src/modules/m_showwhois.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/modules/m_showwhois.cpp b/src/modules/m_showwhois.cpp
index d81dd553d..3b2ea7de9 100644
--- a/src/modules/m_showwhois.cpp
+++ b/src/modules/m_showwhois.cpp
@@ -76,9 +76,10 @@ class ModuleShowwhois : public Module
ModuleShowwhois() : cmd(this)
{
- ConfigReader conf;
- bool OpersOnly = conf.ReadFlag("showwhois", "opersonly", "yes", 0);
- ShowWhoisFromOpers = conf.ReadFlag("showwhois", "showfromopers", "yes", 0);
+ ConfigTag* tag = ServerInstance->Config->ConfValue("showwhois");
+
+ bool OpersOnly = tag->getBool("opersonly", true);
+ ShowWhoisFromOpers = tag->getBool("showfromopers", true);
sw = new SeeWhois(this, OpersOnly);
if (!ServerInstance->Modes->AddMode(sw))