X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_showwhois.cpp;h=04834634d278039320c97cefcff80d0bd7d66673;hb=fcafba14c5408360ec725ed1649ede75b7ae52c1;hp=f4b7cec463b1323d8ae31a5b2fdaa536477df154;hpb=0f41486ecf373cdba78fe170faf48161e92a9b1b;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_showwhois.cpp b/src/modules/m_showwhois.cpp index f4b7cec46..04834634d 100644 --- a/src/modules/m_showwhois.cpp +++ b/src/modules/m_showwhois.cpp @@ -2,8 +2,8 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2008 InspIRCd Development Team - * See: http://www.inspircd.org/wiki/index.php/Credits + * InspIRCd: (C) 2002-2009 InspIRCd Development Team + * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see * the file COPYING for details. @@ -55,8 +55,8 @@ class ModuleShowwhois : public Module ModuleShowwhois(InspIRCd* Me) : Module(Me) { ConfigReader conf(ServerInstance); - bool OpersOnly = conf.ReadFlag("showwhois", "opersonly", 0, true); - ShowWhoisFromOpers = conf.ReadFlag("showwhois", "showfromopers", 0, true); + bool OpersOnly = conf.ReadFlag("showwhois", "opersonly", "yes", 0); + ShowWhoisFromOpers = conf.ReadFlag("showwhois", "showfromopers", "yes", 0); sw = new SeeWhois(ServerInstance, OpersOnly); if (!ServerInstance->Modes->AddMode(sw)) @@ -84,7 +84,7 @@ class ModuleShowwhois : public Module return; std::string wmsg = "*** "; - wmsg += source->nick + "(" + source->ident + "@"; + wmsg += source->nick + " (" + source->ident + "@"; if (dest->HasPrivPermission("users/auspex")) { @@ -103,7 +103,7 @@ class ModuleShowwhois : public Module } else { - std::string msg = std::string(":") + dest->server + " NOTICE " + dest->nick + " :" + wmsg; + std::string msg = std::string("::") + dest->server + " NOTICE " + dest->nick + " :" + wmsg; ServerInstance->PI->PushToClient(dest, msg); } }