]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/extra/m_regex_pcre.cpp
Misc removal of pointless Extend strings
[user/henk/code/inspircd.git] / src / modules / extra / m_regex_pcre.cpp
index aea4cbbb68d1238d0903987366beeb14e90f9467..168b1c833e7bd857a16f91f04497303684bac97e 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.
@@ -77,6 +77,11 @@ public:
                Me->Modules->Attach(eventlist, this, 1);
        }
 
+       virtual Version GetVersion()
+       {
+               return Version("$Id$", VF_COMMON | VF_VENDOR | VF_SERVICEPROVIDER, API_VERSION);
+       }
+
        virtual ~ModuleRegexPCRE()
        {
                ServerInstance->Modules->UnpublishInterface("RegularExpression", this);
@@ -98,3 +103,5 @@ public:
                return NULL;
        }
 };
+
+MODULE_INIT(ModuleRegexPCRE)