]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_customtitle.cpp
Sync helpop chmodes s and p with docs
[user/henk/code/inspircd.git] / src / modules / m_customtitle.cpp
index 7cdd0bc4fd3f42543755fd3f5852aee6d10645f9..faac3045a53ff7cbf9b68b315e9a6c8e94f3bec3 100644 (file)
@@ -2,7 +2,7 @@
  * InspIRCd -- Internet Relay Chat Daemon
  *
  *   Copyright (C) 2018 linuxdaemon <linuxdaemon.irc@gmail.com>
- *   Copyright (C) 2013, 2017-2018 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2013, 2017-2018, 2020 Sadie Powell <sadie@witchery.services>
  *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
  *   Copyright (C) 2012, 2015-2016 Attila Molnar <attilamolnar@hush.com>
  *   Copyright (C) 2010 Craig Edwards <brain@inspircd.org>
@@ -143,7 +143,7 @@ class ModuleCustomTitle : public Module, public Whois::LineEventListener
                                        name.c_str(), tag->getTagLocation().c_str());
                        }
 
-                       std::string host = tag->getString("host", "*@*");
+                       std::string host = tag->getString("host", "*@*", 1);
                        std::string title = tag->getString("title");
                        std::string vhost = tag->getString("vhost");
                        CustomTitle config(name, pass, hash, host, title, vhost);
@@ -171,7 +171,7 @@ class ModuleCustomTitle : public Module, public Whois::LineEventListener
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Provides the TITLE command, custom titles for users", VF_OPTCOMMON | VF_VENDOR);
+               return Version("Allows the server administrator to define accounts which can grant a custom title in /WHOIS and an optional virtual host.", VF_OPTCOMMON | VF_VENDOR);
        }
 };