]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_md5.cpp
Flexible SendQ
[user/henk/code/inspircd.git] / src / modules / m_md5.cpp
index 37740027c0ebf7160407a1607a56206688dc9f90..911f6d9263ebd6a5bf448a28a5698f270659560c 100644 (file)
@@ -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.
@@ -264,8 +264,8 @@ class ModuleMD5 : public Module
 
  public:
 
-       ModuleMD5(InspIRCd* Me)
-               : Module(Me), key(NULL), chars(NULL)
+       ModuleMD5()
+               : key(NULL), chars(NULL)
        {
                ServerInstance->Modules->PublishInterface("HashRequest", this);
                Implementation eventlist[] = { I_OnRequest };
@@ -310,7 +310,7 @@ class ModuleMD5 : public Module
 
        virtual Version GetVersion()
        {
-               return Version("$Id$",VF_VENDOR|VF_SERVICEPROVIDER,API_VERSION);
+               return Version("Allows for MD5 encrypted oper passwords",VF_VENDOR|VF_SERVICEPROVIDER,API_VERSION);
        }
 };