]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Remove dummy API_VERSION from Version constructor
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>
Sat, 17 Oct 2009 17:53:31 +0000 (17:53 +0000)
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>
Sat, 17 Oct 2009 17:53:31 +0000 (17:53 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11887 e03df62e-2008-0410-955e-edbf42e46eb7

133 files changed:
include/modules.h
src/modules.cpp
src/modules/extra/m_geoip.cpp
src/modules/extra/m_ldapauth.cpp
src/modules/extra/m_ldapoper.cpp
src/modules/extra/m_mssql.cpp
src/modules/extra/m_mysql.cpp
src/modules/extra/m_pgsql.cpp
src/modules/extra/m_regex_pcre.cpp
src/modules/extra/m_regex_posix.cpp
src/modules/extra/m_regex_tre.cpp
src/modules/extra/m_sqlite3.cpp
src/modules/extra/m_ssl_gnutls.cpp
src/modules/extra/m_ssl_openssl.cpp
src/modules/m_abbreviation.cpp
src/modules/m_alias.cpp
src/modules/m_allowinvite.cpp
src/modules/m_alltime.cpp
src/modules/m_antibear.cpp
src/modules/m_antibottler.cpp
src/modules/m_auditorium.cpp
src/modules/m_banredirect.cpp
src/modules/m_blockamsg.cpp
src/modules/m_blockcaps.cpp
src/modules/m_blockcolor.cpp
src/modules/m_botmode.cpp
src/modules/m_callerid.cpp
src/modules/m_cban.cpp
src/modules/m_censor.cpp
src/modules/m_cgiirc.cpp
src/modules/m_chancreate.cpp
src/modules/m_chanfilter.cpp
src/modules/m_chanlog.cpp
src/modules/m_channames.cpp
src/modules/m_channelban.cpp
src/modules/m_chghost.cpp
src/modules/m_chgident.cpp
src/modules/m_chgname.cpp
src/modules/m_cloaking.cpp
src/modules/m_clones.cpp
src/modules/m_close.cpp
src/modules/m_commonchans.cpp
src/modules/m_conn_join.cpp
src/modules/m_conn_umodes.cpp
src/modules/m_connectban.cpp
src/modules/m_connflood.cpp
src/modules/m_cycle.cpp
src/modules/m_dccallow.cpp
src/modules/m_deaf.cpp
src/modules/m_delaymsg.cpp
src/modules/m_denychans.cpp
src/modules/m_devoice.cpp
src/modules/m_dnsbl.cpp
src/modules/m_exemptchanops.cpp
src/modules/m_filter.cpp
src/modules/m_globops.cpp
src/modules/m_helpop.cpp
src/modules/m_hidechans.cpp
src/modules/m_hideoper.cpp
src/modules/m_hostchange.cpp
src/modules/m_httpd.cpp
src/modules/m_httpd_acl.cpp
src/modules/m_httpd_config.cpp
src/modules/m_httpd_stats.cpp
src/modules/m_ident.cpp
src/modules/m_joinflood.cpp
src/modules/m_jumpserver.cpp
src/modules/m_knock.cpp
src/modules/m_lockserv.cpp
src/modules/m_maphide.cpp
src/modules/m_md5.cpp
src/modules/m_messageflood.cpp
src/modules/m_muteban.cpp
src/modules/m_nationalchars.cpp
src/modules/m_nicklock.cpp
src/modules/m_noctcp.cpp
src/modules/m_nokicks.cpp
src/modules/m_nonicks.cpp
src/modules/m_nonotice.cpp
src/modules/m_nopartmsg.cpp
src/modules/m_operchans.cpp
src/modules/m_operjoin.cpp
src/modules/m_operlevels.cpp
src/modules/m_operlog.cpp
src/modules/m_opermodes.cpp
src/modules/m_opermotd.cpp
src/modules/m_operprefix.cpp
src/modules/m_override.cpp
src/modules/m_password_hash.cpp
src/modules/m_permchannels.cpp
src/modules/m_randquote.cpp
src/modules/m_redirect.cpp
src/modules/m_remove.cpp
src/modules/m_restrictchans.cpp
src/modules/m_restrictmsg.cpp
src/modules/m_ripemd160.cpp
src/modules/m_rline.cpp
src/modules/m_sajoin.cpp
src/modules/m_sakick.cpp
src/modules/m_samode.cpp
src/modules/m_sanick.cpp
src/modules/m_sapart.cpp
src/modules/m_saquit.cpp
src/modules/m_sasl.cpp
src/modules/m_satopic.cpp
src/modules/m_securelist.cpp
src/modules/m_seenicks.cpp
src/modules/m_services_account.cpp
src/modules/m_servprotect.cpp
src/modules/m_sethost.cpp
src/modules/m_setident.cpp
src/modules/m_setidle.cpp
src/modules/m_setname.cpp
src/modules/m_sha256.cpp
src/modules/m_showwhois.cpp
src/modules/m_shun.cpp
src/modules/m_silence.cpp
src/modules/m_spy.cpp
src/modules/m_sqlauth.cpp
src/modules/m_sqllog.cpp
src/modules/m_sqlutils.cpp
src/modules/m_sslmodes.cpp
src/modules/m_stripcolor.cpp
src/modules/m_svshold.cpp
src/modules/m_swhois.cpp
src/modules/m_timedbans.cpp
src/modules/m_tline.cpp
src/modules/m_uhnames.cpp
src/modules/m_uninvite.cpp
src/modules/m_userip.cpp
src/modules/m_vhost.cpp
src/modules/m_watch.cpp
src/modules/m_xline_db.cpp

index 4166af051788e188ebaf5fcf10bc98dd5a06f8d9..ef6f5c25177d038b9560cbd3dd6494b6a479b837 100644 (file)
@@ -246,7 +246,7 @@ class CoreExport VersionBase : public classbase
 
        /** Initialize version class
         */
-       VersionBase(const std::string &desc, int flags = VF_NONE, int dummy = 0, const std::string& src_rev = VERSION " r" REVISION);
+       VersionBase(const std::string &desc, int flags = VF_NONE, const std::string& src_rev = VERSION " r" REVISION);
 };
 
 typedef VersionBase<API_VERSION> Version;
index f8989b415c5c3f87d56d1f470ebf3db51144d2ea..913293e1357e87e8a5f863242d7daf7c68682378 100644 (file)
@@ -24,9 +24,9 @@
 #endif
 
 
-// version is a simple class for holding a modules version number
+// Version is a simple class for holding a modules version number
 template<>
-VersionBase<API_VERSION>::VersionBase(const std::string &modv, int flags, int, const std::string& rev)
+VersionBase<API_VERSION>::VersionBase(const std::string &modv, int flags, const std::string& rev)
 : description(modv), version(rev), Flags(flags)
 {
 }
index 13b35fdfbd6586bf15ce78b48494da206ffcd157..ff6e3c7c2be3cddd0b0d1b0879cc97e92a997df3 100644 (file)
@@ -43,7 +43,7 @@ class ModuleGeoIP : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides a way to restrict users by country using GeoIP lookup", VF_VENDOR, API_VERSION);
+               return Version("Provides a way to restrict users by country using GeoIP lookup", VF_VENDOR);
        }
 
        virtual void OnRehash(User* user)
index 013bdd1102ab5c5f0c43f6d9ef54358a0c35620a..50c95270482b06c2ef3d350d2985d5cc30ad8e69 100644 (file)
@@ -215,7 +215,7 @@ public:
 
        Version GetVersion()
        {
-               return Version("Allow/Deny connections based upon answer from LDAP server", VF_VENDOR, API_VERSION);
+               return Version("Allow/Deny connections based upon answer from LDAP server", VF_VENDOR);
        }
 
 };
index 634a99fa78233615ffeed6e369808f0c4d6be541..7d75c4ca7385f6f2a0d0f559e564ff8dc75665df 100644 (file)
@@ -178,7 +178,7 @@ public:
 
        virtual Version GetVersion()
        {
-               return Version("Allow/Deny connections based upon answer from LDAP server", VF_VENDOR, API_VERSION);
+               return Version("Allow/Deny connections based upon answer from LDAP server", VF_VENDOR);
        }
 
 };
index 25c4952a9207746f6a799320a418cc358c2ac9ca..6a2f1aa895ee054fd7af6ada89593435fa61d164 100644 (file)
@@ -825,7 +825,7 @@ class ModuleMsSQL : public Module
 
        virtual Version GetVersion()
        {
-               return Version("MsSQL provider", VF_VENDOR | VF_SERVICEPROVIDER, API_VERSION);
+               return Version("MsSQL provider", VF_VENDOR | VF_SERVICEPROVIDER);
        }
 
 };
index a921dea8ef102b11b6d477843f0c97ed6dfd7d59..90a2d95dce0e4cf56d36e97622a9efbef241edcd 100644 (file)
@@ -756,7 +756,7 @@ void ModuleSQL::OnRehash(User* user)
 
 Version ModuleSQL::GetVersion()
 {
-       return Version("SQL Service Provider module for all other m_sql* modules", VF_VENDOR | VF_SERVICEPROVIDER, API_VERSION);
+       return Version("SQL Service Provider module for all other m_sql* modules", VF_VENDOR | VF_SERVICEPROVIDER);
 }
 
 void DispatcherThread::Run()
index 8e37e0deae8dea3657eb1a1255596df9e5ddb38c..5d2fe106bfa593def6c1b6ba6eb28757fe113c37 100644 (file)
@@ -954,7 +954,7 @@ class ModulePgSQL : public Module
 
        virtual Version GetVersion()
        {
-               return Version("PostgreSQL Service Provider module for all other m_sql* modules, uses v2 of the SQL API", VF_VENDOR|VF_SERVICEPROVIDER, API_VERSION);
+               return Version("PostgreSQL Service Provider module for all other m_sql* modules, uses v2 of the SQL API", VF_VENDOR|VF_SERVICEPROVIDER);
        }
 };
 
index 16d0cfe15e1e5064faaebe007de9bdf1fea89ef3..8f2284ce6a434be63f349b34f8838172875e7665 100644 (file)
@@ -76,7 +76,7 @@ public:
 
        virtual Version GetVersion()
        {
-               return Version("Regex Provider Module for PCRE", VF_COMMON | VF_VENDOR | VF_SERVICEPROVIDER, API_VERSION);
+               return Version("Regex Provider Module for PCRE", VF_COMMON | VF_VENDOR | VF_SERVICEPROVIDER);
        }
 
        virtual ~ModuleRegexPCRE()
index 62b44e0e4dae4497c53b1ee9fce605d88b976d65..1bcd32187daed23adcc8b787f3cb6dc7b8412f9c 100644 (file)
@@ -85,7 +85,7 @@ public:
 
        virtual Version GetVersion()
        {
-               return Version("Regex Provider Module for POSIX Regular Expressions", VF_COMMON | VF_VENDOR | VF_SERVICEPROVIDER, API_VERSION);
+               return Version("Regex Provider Module for POSIX Regular Expressions", VF_COMMON | VF_VENDOR | VF_SERVICEPROVIDER);
        }
 
        virtual ~ModuleRegexPOSIX()
index f2a9004bd8325c0ad2a7a8ef158280337074324e..ef0ed91a4746a0f05e3670072f9ba6581e68978a 100644 (file)
@@ -82,7 +82,7 @@ public:
 
        virtual Version GetVersion()
        {
-               return Version("Regex Provider Module for TRE Regular Expressions", VF_COMMON | VF_VENDOR | VF_SERVICEPROVIDER, API_VERSION);
+               return Version("Regex Provider Module for TRE Regular Expressions", VF_COMMON | VF_VENDOR | VF_SERVICEPROVIDER);
        }
 
        virtual ~ModuleRegexTRE()
index cb4fb0b5edca0cb6a8a962b06cfcef17330a98b5..aba3c0930cc4ad4f9672b879d34d6c4c446d1add 100644 (file)
@@ -723,7 +723,7 @@ class ModuleSQLite3 : public Module
 
        virtual Version GetVersion()
        {
-               return Version("sqlite3 provider", VF_VENDOR | VF_SERVICEPROVIDER, API_VERSION);
+               return Version("sqlite3 provider", VF_VENDOR | VF_SERVICEPROVIDER);
        }
 
 };
index e3e533cfd912efa48217e66e6d03e2ec876488ce..ec8993f4b2b85d5a32b347c54fe1b33b4d6b1e2e 100644 (file)
@@ -310,7 +310,7 @@ class ModuleSSLGnuTLS : public Module
 
        Version GetVersion()
        {
-               return Version("Provides SSL support for clients", VF_VENDOR, API_VERSION);
+               return Version("Provides SSL support for clients", VF_VENDOR);
        }
 
 
index 23501274608f5b40a48517982170f793b202d15b..cd648c1b402a7c31b34399ad50a70c4a7396b2ad 100644 (file)
@@ -264,7 +264,7 @@ class ModuleSSLOpenSSL : public Module
 
        Version GetVersion()
        {
-               return Version("Provides SSL support for clients", VF_VENDOR, API_VERSION);
+               return Version("Provides SSL support for clients", VF_VENDOR);
        }
 
 
index c8aadfcae149cf29b0a01568b2665455d575519b..a24aefc99e732c156ddb4b47f5b292b8e83eaedd 100644 (file)
@@ -29,7 +29,7 @@ class ModuleAbbreviation : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides the ability to abbreviate commands a-la BBC BASIC keywords.",VF_VENDOR,API_VERSION);
+               return Version("Provides the ability to abbreviate commands a-la BBC BASIC keywords.",VF_VENDOR);
        }
 
        virtual ModResult OnPreCommand(std::string &command, std::vector<std::string> &parameters, User *user, bool validated, const std::string &original_line)
index 3f3c3b1ba916e2667a90b6bfdbedc10a21bee85d..6aa1f6c3611c0d99b409e0eee851865d5656dffd 100644 (file)
@@ -108,7 +108,7 @@ class ModuleAlias : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides aliases of commands.", VF_VENDOR,API_VERSION);
+               return Version("Provides aliases of commands.", VF_VENDOR);
        }
 
        std::string GetVar(std::string varname, const std::string &original_line)
index ae6c14c1f6d38a551cce21648e63b374b45ab819..36b3d757704976dc3c4cd532039db62edf8bc92c 100644 (file)
@@ -66,7 +66,7 @@ class ModuleAllowInvite : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for channel mode +A, allowing /invite freely on a channel (and extban A to allow specific users it)",VF_COMMON|VF_VENDOR,API_VERSION);
+               return Version("Provides support for channel mode +A, allowing /invite freely on a channel (and extban A to allow specific users it)",VF_COMMON|VF_VENDOR);
        }
 };
 
index 63e8067e3cc3d48b409f58a53fc4928c92156fd5..b8174c7a629e627376a8b52ea8a92d747209b503 100644 (file)
@@ -61,7 +61,7 @@ class Modulealltime : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Display timestamps from all servers connected to the network", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Display timestamps from all servers connected to the network", VF_COMMON | VF_VENDOR);
        }
 
 };
index b7a6f06632d2d7d30feeb121676a9cf4c20fab6b..f4f725ab279a80cf1289a0990ec7fbea06cfdabf 100644 (file)
@@ -33,7 +33,7 @@ class ModuleAntiBear : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Sends a numeric on connect which cripples a common type of trojan/spambot",VF_VENDOR,API_VERSION);
+               return Version("Sends a numeric on connect which cripples a common type of trojan/spambot",VF_VENDOR);
        }
 
        virtual ModResult OnPreCommand(std::string &command, std::vector<std::string> &parameters, User *user, bool validated, const std::string &original_line)
index 8d4931e3b17e8ff66359d6d164d3b024d1fad09c..f3a2613bccfc75db1584630c1f7eeaa0f87cdcdc 100644 (file)
@@ -33,7 +33,7 @@ class ModuleAntiBottler : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Changes the ident of connecting bottler clients to 'bottler'",VF_VENDOR,API_VERSION);
+               return Version("Changes the ident of connecting bottler clients to 'bottler'",VF_VENDOR);
        }
 
        virtual ModResult OnPreCommand(std::string &command, std::vector<std::string> &parameters, User *user, bool validated, const std::string &original_line)
index d7a0f055cb565b47bbac565a9b50d13983bab57d..4955b7c49e08f022b3be2aa88164b6fc95806d46 100644 (file)
@@ -70,7 +70,7 @@ class ModuleAuditorium : public Module
 
        Version GetVersion()
        {
-               return Version("Allows for auditorium channels (+u) where nobody can see others joining and parting or the nick list", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Allows for auditorium channels (+u) where nobody can see others joining and parting or the nick list", VF_COMMON | VF_VENDOR);
        }
 
        void OnNamesListItem(User* issuer, Membership* memb, std::string &prefixes, std::string &nick)
index a7b94b23e361046ac5c122d56e3d805be0bf3479..fdc5b122047858b72f499fc16f2f89ddab3066cf 100644 (file)
@@ -332,7 +332,7 @@ class ModuleBanRedirect : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Allows an extended ban (+b) syntax redirecting banned users to another channel", VF_COMMON|VF_VENDOR, API_VERSION);
+               return Version("Allows an extended ban (+b) syntax redirecting banned users to another channel", VF_COMMON|VF_VENDOR);
        }
 
        void Prioritize()
index ffdbb65c0445c5b69c717d3e7802ffbdeba0a75e..d2f3f2cdbe683c5c8eeaca49f6633e94b1ab5881 100644 (file)
@@ -60,7 +60,7 @@ class ModuleBlockAmsg : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Attempt to block /amsg, at least some of the irritating mIRC scripts.",VF_VENDOR,API_VERSION);
+               return Version("Attempt to block /amsg, at least some of the irritating mIRC scripts.",VF_VENDOR);
        }
 
        virtual void OnRehash(User* user)
index e24d9e53c4c391710cc12e4f797accdd8fb55a4f..076f625cebe873613f18e926e53857c8a5edc089 100644 (file)
@@ -128,7 +128,7 @@ public:
 
        virtual Version GetVersion()
        {
-               return Version("Provides support to block all-CAPS channel messages and notices", VF_COMMON|VF_VENDOR,API_VERSION);
+               return Version("Provides support to block all-CAPS channel messages and notices", VF_COMMON|VF_VENDOR);
        }
 };
 
index 73bfb76069c32ac4213877282908c9eb09f3e697..cc36a47092c364a2a18058068935022da5630e4c 100644 (file)
@@ -86,7 +86,7 @@ class ModuleBlockColour : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for unreal-style channel mode +c",VF_COMMON|VF_VENDOR,API_VERSION);
+               return Version("Provides support for unreal-style channel mode +c",VF_COMMON|VF_VENDOR);
        }
 };
 
index c3d56fd8b973a822a7f739bbe279c1a45382d031..77364da5f9ba6d8ee5f242082b1df5202c8fd1b1 100644 (file)
@@ -43,7 +43,7 @@ class ModuleBotMode : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for unreal-style umode +B",VF_COMMON|VF_VENDOR,API_VERSION);
+               return Version("Provides support for unreal-style umode +B",VF_COMMON|VF_VENDOR);
        }
 
        virtual void OnWhois(User* src, User* dst)
index 94dd009c3c42cf9f46b4b30032bc6571afb1cd97..cf60c084a4725a21b44bbf79239abae19ec3ddd2 100644 (file)
@@ -362,7 +362,7 @@ public:
 
        virtual Version GetVersion()
        {
-               return Version("Implementation of callerid (umode +g & /accept, ala hybrid etc)", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Implementation of callerid (umode +g & /accept, ala hybrid etc)", VF_COMMON | VF_VENDOR);
        }
 
        virtual void On005Numeric(std::string& output)
index bfb30f5e8a687c1b461f3132195f9b32121819c7..1285d7a776aff1545e5c39d8e6454e1039ae4e4c 100644 (file)
@@ -205,7 +205,7 @@ class ModuleCBan : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Gives /cban, aka C:lines. Think Q:lines, for channels.", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Gives /cban, aka C:lines. Think Q:lines, for channels.", VF_COMMON | VF_VENDOR);
        }
 };
 
index 8ec3f72c14bc51d9f4083c69849669bcfe655737..39824147529159303450ea450884d7a810e74786 100644 (file)
@@ -129,7 +129,7 @@ class ModuleCensor : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides user and channel +G mode",VF_COMMON|VF_VENDOR,API_VERSION);
+               return Version("Provides user and channel +G mode",VF_COMMON|VF_VENDOR);
        }
 
 };
index a2c8e1c0e221f77afcb40976874c72aa5e5ba2fc..04e35adcb1d6c08156109b8b2df8674d6f88240e 100644 (file)
@@ -434,7 +434,7 @@ public:
 
        virtual Version GetVersion()
        {
-               return Version("Change user's hosts connecting from known CGI:IRC hosts",VF_VENDOR,API_VERSION);
+               return Version("Change user's hosts connecting from known CGI:IRC hosts",VF_VENDOR);
        }
 
 };
index 66635304952bbecad151294567c621ec83fb6943..0ddcedf29f40414b028b560f40157a5096c35c82 100644 (file)
@@ -35,7 +35,7 @@ class ModuleChanCreate : public Module
 
        Version GetVersion()
        {
-               return Version("Creates a snomask with notices whenever a new channel is created",VF_VENDOR,API_VERSION);
+               return Version("Creates a snomask with notices whenever a new channel is created",VF_VENDOR);
        }
 
 
index 25321536afc2fc66f151a3238e4dd6b7c6d57c8f..5249a088ccd190778319f1938423865d29119c3a 100644 (file)
@@ -137,7 +137,7 @@ class ModuleChanFilter : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides channel-specific censor lists (like mode +G but varies from channel to channel)", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides channel-specific censor lists (like mode +G but varies from channel to channel)", VF_COMMON | VF_VENDOR);
        }
 
        virtual ~ModuleChanFilter()
index e78a4dd478d072f95ef162326a54ba194b885d85..f18a01b50854cac1a8be953206a52cdc42aff23b 100644 (file)
@@ -96,7 +96,7 @@ class ModuleChanLog : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Logs snomask output to channel(s).", VF_VENDOR,API_VERSION);
+               return Version("Logs snomask output to channel(s).", VF_VENDOR);
        }
 };
 
index 008422c66e2a07535a03614c85d3aef3ad6e8df9..ba03f9af5480013e4942f49df79f4798a89848c5 100644 (file)
@@ -130,7 +130,7 @@ class ModuleChannelNames : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Implements config tags which allow changing characters allowed in channel names", VF_VENDOR,API_VERSION);
+               return Version("Implements config tags which allow changing characters allowed in channel names", VF_VENDOR);
        }
 };
 
index 5b7b326bd8512210245d0ccac4afe56ed228b068..b19ab049432771d0edafdbaaa6d9dcc4ea5280aa 100644 (file)
@@ -30,7 +30,7 @@ class ModuleBadChannelExtban : public Module
 
        Version GetVersion()
        {
-               return Version("Extban 'j' - channel status/join ban", VF_COMMON|VF_VENDOR,API_VERSION);
+               return Version("Extban 'j' - channel status/join ban", VF_COMMON|VF_VENDOR);
        }
 
        ModResult OnCheckBan(User *user, Channel *c, const std::string& mask)
index 7901fad7fb909134444797efdb5527a6ef053923..6884fd35a6655e2c5b6aeb1a0d63622d69e03524 100644 (file)
@@ -110,7 +110,7 @@ class ModuleChgHost : public Module
 
        Version GetVersion()
        {
-               return Version("Provides support for the CHGHOST command", VF_OPTCOMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for the CHGHOST command", VF_OPTCOMMON | VF_VENDOR);
        }
 
 };
index f352c1c2b8e610c85357c41373bd6bafda984c5a..b4cea8b43e122869590468ce20ec708350e25a0e 100644 (file)
@@ -86,7 +86,7 @@ public:
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for the CHGIDENT command", VF_OPTCOMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for the CHGIDENT command", VF_OPTCOMMON | VF_VENDOR);
        }
 
 };
index 0fac2bdad22809d98dd354a38e7f51b68764ed0b..86e01ad33cef16a9dbafca09aa8d78e32d28fed8 100644 (file)
@@ -78,7 +78,7 @@ public:
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for the CHGNAME command", VF_OPTCOMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for the CHGNAME command", VF_OPTCOMMON | VF_VENDOR);
        }
 
 };
index 0aee306a341f798f66900c180839ce940d038f34..1a1ff039e180245edc5f2d1cb2956b111a5aaa52 100644 (file)
@@ -344,7 +344,7 @@ class ModuleCloaking : public Module
        {
                // returns the version number of the module to be
                // listed in /MODULES
-               return Version("Provides masking of user hostnames", VF_COMMON|VF_VENDOR,API_VERSION);
+               return Version("Provides masking of user hostnames", VF_COMMON|VF_VENDOR);
        }
 
        void OnRehash(User* user)
index 9742ea29d6c714797c01229c871f952a71a6c16b..fac64f356b36cf7010761337f42df8a96964dbde 100644 (file)
@@ -72,7 +72,7 @@ class ModuleClones : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides the /clones command to retrieve information on clones.", VF_VENDOR, API_VERSION);
+               return Version("Provides the /clones command to retrieve information on clones.", VF_VENDOR);
        }
 
 
index a2e9692cdbf2c38b7c814d2fd01f33e26bd139b5..24831a80794063e315c0a3e23426a4c91bc0a375 100644 (file)
@@ -80,7 +80,7 @@ class ModuleClose : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides /CLOSE functionality", VF_VENDOR, API_VERSION);
+               return Version("Provides /CLOSE functionality", VF_VENDOR);
        }
 };
 
index 4cddb651e62d427bd79b690edcbc96297f442ca7..5d429f432c880c363642d5ac3f176392dd1ddf6b 100644 (file)
@@ -64,7 +64,7 @@ class ModulePrivacyMode : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Adds user mode +c, which if set, users must be on a common channel with you to private message you", VF_COMMON|VF_VENDOR, API_VERSION);
+               return Version("Adds user mode +c, which if set, users must be on a common channel with you to private message you", VF_COMMON|VF_VENDOR);
        }
 
        virtual ModResult OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
index b78cc85bee78d1e16ecde69eeaf5a001775ca613..b1f12e1ebd0aa7e23a0fd8572ab1f3711e58ccfb 100644 (file)
@@ -71,7 +71,7 @@ class ModuleConnJoin : public Module
 
                virtual Version GetVersion()
                {
-                       return Version("Forces users to join the specified channel(s) on connect", VF_VENDOR,API_VERSION);
+                       return Version("Forces users to join the specified channel(s) on connect", VF_VENDOR);
                }
 
                virtual void OnPostConnect(User* user)
index 0fcd73fe92493c2fd17b60d13f09c3d82e114d1f..714114f04f66506bc444b391a8f691eeb1d583be 100644 (file)
@@ -32,7 +32,7 @@ class ModuleModesOnConnect : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Sets (and unsets) modes on users when they connect", VF_VENDOR,API_VERSION);
+               return Version("Sets (and unsets) modes on users when they connect", VF_VENDOR);
        }
 
        virtual void OnUserConnect(User* user)
index b676fa681df8bd8506a878688a46fd857965f851..f956cb7db92470661cf37f3c28477cc8b03147e7 100644 (file)
@@ -37,7 +37,7 @@ class ModuleConnectBan : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Throttles the connections of any users who try connect flood", VF_VENDOR,API_VERSION);
+               return Version("Throttles the connections of any users who try connect flood", VF_VENDOR);
        }
 
        virtual void OnRehash(User* user)
index 419dbab9c3a5bf5e18f9859946c3d1b035751268..ae9fcf0e529308e0a4cad59f1d731eca17a5e821 100644 (file)
@@ -41,7 +41,7 @@ public:
 
        virtual Version GetVersion()
        {
-               return Version("Connection throttle", VF_VENDOR,API_VERSION);
+               return Version("Connection throttle", VF_VENDOR);
        }
 
        void InitConf()
index 4b3d3e83bc5bc88e69d9d0e186dba2331079a5da..dec806b5bf1f1fd7735c929e87f809e52a034c7b 100644 (file)
@@ -92,7 +92,7 @@ class ModuleCycle : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for unreal-style CYCLE command.", VF_VENDOR, API_VERSION);
+               return Version("Provides support for unreal-style CYCLE command.", VF_VENDOR);
        }
 
 };
index b66fa436e87f8a48879ec1b06fa4589a5ae3111d..c202a97b43f9c9878d74f65e45adf3e59fec0b06 100644 (file)
@@ -471,7 +471,7 @@ class ModuleDCCAllow : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Povides support for the /DCCALLOW command", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Povides support for the /DCCALLOW command", VF_COMMON | VF_VENDOR);
        }
 };
 
index d6b549de4d9a7b4ab1c254325bdbad40b1d06507..f52702bca8592bcc7f55c6ad9320ab4276356775 100644 (file)
@@ -157,7 +157,7 @@ class ModuleDeaf : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for ircu style usermode +d (deaf to channel messages and channel notices)", VF_COMMON|VF_VENDOR,API_VERSION);
+               return Version("Provides support for ircu style usermode +d (deaf to channel messages and channel notices)", VF_COMMON|VF_VENDOR);
        }
 
 };
index 7489f6dfa6a8d7cfe5874ac81a07f5ebf8d58bda..0432bce5b0cc80af70074a1d70c3c15f9d20dbdf 100644 (file)
@@ -100,7 +100,7 @@ ModuleDelayMsg::~ModuleDelayMsg()
 
 Version ModuleDelayMsg::GetVersion()
 {
-       return Version("Provides channelmode +d <int>, to deny messages to a channel until <int> seconds.", VF_COMMON | VF_VENDOR, API_VERSION);
+       return Version("Provides channelmode +d <int>, to deny messages to a channel until <int> seconds.", VF_COMMON | VF_VENDOR);
 }
 
 void ModuleDelayMsg::OnUserJoin(Membership* memb, bool sync, bool created, CUList&)
index f95c0b1079d4ce613b92b350ad9d6a3244855e26..4493b62404e7c6747b02285b4884527ffac82b01 100644 (file)
@@ -81,7 +81,7 @@ class ModuleDenyChannels : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Implements config tags which allow blocking of joins to channels", VF_VENDOR,API_VERSION);
+               return Version("Implements config tags which allow blocking of joins to channels", VF_VENDOR);
        }
 
 
index 7c2dcb3d81fb85091bf51508f90b3ad552d2cae1..fcb9d3abe7b93b27a6ebeed2742af9ce14bb3b77 100644 (file)
@@ -65,7 +65,7 @@ class ModuleDeVoice : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides voiced users with the ability to devoice themselves.", VF_VENDOR, API_VERSION);
+               return Version("Provides voiced users with the ability to devoice themselves.", VF_VENDOR);
        }
 };
 
index 73d5316b5823bbe243fe318afff520256ad8b55d..5fedf08dd6a7cf8c2d670ddc69bb008a5879bd9c 100644 (file)
@@ -228,7 +228,7 @@ class ModuleDNSBL : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides handling of DNS blacklists", VF_VENDOR, API_VERSION);
+               return Version("Provides handling of DNS blacklists", VF_VENDOR);
        }
 
 
index 83e21bef3c2c14a16234928267e8de55cf89b5dd..9e6b735ed2caef39d6e67e8655b57a38e72a70e0 100644 (file)
@@ -78,7 +78,7 @@ class ModuleExemptChanOps : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides the ability to allow channel operators to be exempt from certain modes.",VF_VENDOR|VF_COMMON,API_VERSION);
+               return Version("Provides the ability to allow channel operators to be exempt from certain modes.",VF_VENDOR|VF_COMMON);
        }
 
        virtual void OnRehash(User* user)
index 3f95f02c994914a572f223977d7ec9cade7d0533..a9187098b760114e1b2e60a2ce010107770b3fdb 100644 (file)
@@ -477,7 +477,7 @@ void FilterBase::OnLoadModule(Module* mod)
 
 Version FilterBase::GetVersion()
 {
-       return Version("Text (spam) filtering", VF_VENDOR | VF_COMMON, API_VERSION);
+       return Version("Text (spam) filtering", VF_VENDOR | VF_COMMON);
 }
 
 
index 3574ad605e6728491ebab63105dc892dc641b5b6..62b0961b8458b46111a466308b4f03dfe4e9470f 100644 (file)
@@ -66,7 +66,7 @@ class ModuleGlobops : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for GLOBOPS and user mode +g", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for GLOBOPS and user mode +g", VF_COMMON | VF_VENDOR);
        }
 
 };
index 716b9bfb7e41078df815fac9a1a1dea1163d874d..cba630bbc67ba73a68c521d47630626e0edf5602 100644 (file)
@@ -183,7 +183,7 @@ class ModuleHelpop : public Module
 
                virtual Version GetVersion()
                {
-                       return Version("/helpop Command, Works like Unreal helpop", VF_COMMON | VF_VENDOR, API_VERSION);
+                       return Version("/helpop Command, Works like Unreal helpop", VF_COMMON | VF_VENDOR);
                }
 };
 
index 5af5c2b6f248300a6606f3bdaf76c3f1f3cf0836..2cd6a69c99e7690bdef97ab82720539e2778709b 100644 (file)
@@ -65,7 +65,7 @@ class ModuleHideChans : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for hiding channels with user mode +I", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for hiding channels with user mode +I", VF_COMMON | VF_VENDOR);
        }
 
        virtual void OnRehash(User* user)
index b18172786304e49add14d62c68cf65da13fe465b..54207db557df02e37aaf97650086330d691928c8 100644 (file)
@@ -69,7 +69,7 @@ class ModuleHideOper : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for hiding oper status with user mode +H", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for hiding oper status with user mode +H", VF_COMMON | VF_VENDOR);
        }
 
        ModResult OnWhoisLine(User* user, User* dest, int &numeric, std::string &text)
index cb5ab6925396ad4530239f1c88ca5b1cc32063ec..32f0d257ac2fd2d6ee16c7509e05e43c3fb93587 100644 (file)
@@ -88,7 +88,7 @@ class ModuleHostChange : public Module
        {
                // returns the version number of the module to be
                // listed in /MODULES
-               return Version("Provides masking of user hostnames in a different way to m_cloaking", VF_VENDOR, API_VERSION);
+               return Version("Provides masking of user hostnames in a different way to m_cloaking", VF_VENDOR);
        }
 
        virtual void OnUserConnect(User* user)
index 88b635f6f3008e08a959fec93554e6b38500aabc..84d48cc386bebe94ac1932ee81b56d188194030f 100644 (file)
@@ -421,7 +421,7 @@ class ModuleHttpServer : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides HTTP serving facilities to modules", VF_VENDOR | VF_SERVICEPROVIDER, API_VERSION);
+               return Version("Provides HTTP serving facilities to modules", VF_VENDOR | VF_SERVICEPROVIDER);
        }
 };
 
index dd68f3087f93324545d9f6cbd2b37bab3dd77f34..dd6f5a8bbffb7a578ead302e59ba98df2fc1404c 100644 (file)
@@ -277,7 +277,7 @@ class ModuleHTTPAccessList : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides access control lists (passwording of resources, ip restrictions etc) to m_httpd.so dependent modules", VF_VENDOR, API_VERSION);
+               return Version("Provides access control lists (passwording of resources, ip restrictions etc) to m_httpd.so dependent modules", VF_VENDOR);
        }
 };
 
index fa8f5f95f169883e3c22506b42021fb2da5186cc..44013b429d7a0efd28a793d5aa15128371ceb74f 100644 (file)
@@ -114,7 +114,7 @@ class ModuleHttpStats : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides statistics over HTTP via m_httpd.so", VF_VENDOR, API_VERSION);
+               return Version("Provides statistics over HTTP via m_httpd.so", VF_VENDOR);
        }
 };
 
index cfe8f9782da72dc4cb907bedb92167fac9c0b35e..a075bc59c978265178f425ed1510ea565dbd31d7 100644 (file)
@@ -213,7 +213,7 @@ class ModuleHttpStats : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides statistics over HTTP via m_httpd.so", VF_VENDOR, API_VERSION);
+               return Version("Provides statistics over HTTP via m_httpd.so", VF_VENDOR);
        }
 };
 
index 56fa47db8bae4c1e66d9a3aeac8ef837a4f6249c..95a0529c9b5db69c54a2637dc12fb18f1e565bcf 100644 (file)
@@ -291,7 +291,7 @@ class ModuleIdent : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for RFC1413 ident lookups", VF_VENDOR, API_VERSION);
+               return Version("Provides support for RFC1413 ident lookups", VF_VENDOR);
        }
 
        virtual void OnRehash(User *user)
index 8dcd994058a4e094775bf8ffbc929cbf8ff9df39..2b4a006f7c3aa06493a7b4eefcf6a3ef892aac77 100644 (file)
@@ -246,7 +246,7 @@ class ModuleJoinFlood : public Module
 
        Version GetVersion()
        {
-               return Version("Provides channel mode +j (join flood protection)", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides channel mode +j (join flood protection)", VF_COMMON | VF_VENDOR);
        }
 };
 
index 0e8f13c4d4f0efe41c4ae0cd01db91bb8deb29bd..b2bbe0d8c45de15992c35d772d190ab2d0fc2328 100644 (file)
@@ -161,7 +161,7 @@ class ModuleJumpServer : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for the RPL_REDIR numeric", VF_VENDOR, API_VERSION);
+               return Version("Provides support for the RPL_REDIR numeric", VF_VENDOR);
        }
 
 };
index 1d80781b06b3ab7dcb894946369b9e20ba743425..3e794547ede1ba92947a683dbcc51c4906f84ebc 100644 (file)
@@ -100,7 +100,7 @@ class ModuleKnock : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for /KNOCK and mode +K", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for /KNOCK and mode +K", VF_COMMON | VF_VENDOR);
        }
 };
 
index fa5fc3a3f72233551991e2fe81ae499d9ba5b0bd..100b7864b70803a5521fac51ae2c1e69a0b5295b 100644 (file)
@@ -110,7 +110,7 @@ public:
 
        virtual Version GetVersion()
        {
-               return Version("Allows locking of the server to stop all incoming connections till unlocked again", VF_VENDOR, API_VERSION);
+               return Version("Allows locking of the server to stop all incoming connections till unlocked again", VF_VENDOR);
        }
 };
 
index d052001643a1262c74d66b2b829e12da6d342a2d..3b4135c35e116ec28e5eafcf1fb8e3df81cfe994 100644 (file)
@@ -49,7 +49,7 @@ class ModuleMapHide : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Hide /MAP and /LINKS in the same form as ircu (mostly useless)", VF_VENDOR, API_VERSION);
+               return Version("Hide /MAP and /LINKS in the same form as ircu (mostly useless)", VF_VENDOR);
        }
 };
 
index 9fa4894fdce51c44eb843e78398a25d5413e627d..7669d63d752c7bf7c9c0f0814deea1a6571048a3 100644 (file)
@@ -296,7 +296,7 @@ class ModuleMD5 : public Module
 
        Version GetVersion()
        {
-               return Version("Allows for MD5 encrypted oper passwords",VF_VENDOR|VF_SERVICEPROVIDER,API_VERSION);
+               return Version("Allows for MD5 encrypted oper passwords",VF_VENDOR|VF_SERVICEPROVIDER);
        }
 };
 
index 96f504492988e9a3674461896ec0dd8171694f10..bf124839a4b49853206d33eb98fe2d989640cbae 100644 (file)
@@ -268,7 +268,7 @@ class ModuleMsgFlood : public Module
 
        Version GetVersion()
        {
-               return Version("Provides channel mode +f (message flood protection)", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides channel mode +f (message flood protection)", VF_COMMON | VF_VENDOR);
        }
 };
 
index 6e3ca525fe19b1bb03d57e26f5dc2043b4a4333c..52a3d1c2374651f88bdb0410efb237c4a011c34c 100644 (file)
@@ -30,7 +30,7 @@ class ModuleQuietBan : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Implements extban +b m: - mute bans",VF_COMMON|VF_VENDOR,API_VERSION);
+               return Version("Implements extban +b m: - mute bans",VF_COMMON|VF_VENDOR);
        }
 
        virtual ModResult OnUserPreMessage(User *user, void *dest, int target_type, std::string &text, char status, CUList &exempt_list)
index 04b53f02cbea4e56c33ddcf598a15501df5c2bf7..af6e962cf582caa27577ab97294e9e7039bf80a4 100755 (executable)
@@ -277,7 +277,7 @@ class ModuleNationalChars : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides an ability to have non-RFC1459 nicks & support for national CASEMAPPING",VF_COMMON,API_VERSION);
+               return Version("Provides an ability to have non-RFC1459 nicks & support for national CASEMAPPING",VF_COMMON);
        }
 
        /*make an array to check against it 8bit characters a bit faster. Whether allowed or uppercase (for your needs).*/
index bfbda003ff0a291ecb129d3d1ccaea5972acbd1d..759a38bc156493fc3bd1d9f772609986db5a6b89 100644 (file)
@@ -166,7 +166,7 @@ class ModuleNickLock : public Module
 
        Version GetVersion()
        {
-               return Version("Provides the NICKLOCK command, allows an oper to chage a users nick and lock them to it until they quit", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides the NICKLOCK command, allows an oper to chage a users nick and lock them to it until they quit", VF_COMMON | VF_VENDOR);
        }
 
 
index b603ee95c242208dceaeff06b16a04660478c039..eca35be4810a5ffb16976449e9296a8a0ed8a809 100644 (file)
@@ -65,7 +65,7 @@ class ModuleNoCTCP : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for unreal-style channel mode +C", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for unreal-style channel mode +C", VF_COMMON | VF_VENDOR);
        }
 
        virtual ModResult OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
index 60935c30cfb8960133ff5313295db15800d18f43..e648d14bed0e774d55e62e51f19cc4678806d0bf 100644 (file)
@@ -65,7 +65,7 @@ class ModuleNoKicks : public Module
 
        Version GetVersion()
        {
-               return Version("Provides support for unreal-style channel mode +Q", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for unreal-style channel mode +Q", VF_COMMON | VF_VENDOR);
        }
 };
 
index 1109ff61fec4652bd1ed7029fb5e7c93409adfe6..368eaa34354d736dd4edc64a90189d5b00405352 100644 (file)
@@ -60,7 +60,7 @@ class ModuleNoNickChange : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for channel mode +N & extban +b N: which prevents nick changes on channel", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for channel mode +N & extban +b N: which prevents nick changes on channel", VF_COMMON | VF_VENDOR);
        }
 
 
index b7571f35fe2eb377b98dc21008edf1c977411c5c..925b8b7fe37f2bd52ac1dc0ce5e54d0313c3c8f5 100644 (file)
@@ -72,7 +72,7 @@ class ModuleNoNotice : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for unreal-style channel mode +T", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for unreal-style channel mode +T", VF_COMMON | VF_VENDOR);
        }
 };
 
index cdd65417ffe0d6fa0324ff683435688b1e7ec99a..1d3cd901290bdaf673e5b47989292c75e331c489 100644 (file)
@@ -31,7 +31,7 @@ class ModulePartMsgBan : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Implements extban +b p: - part message bans", VF_COMMON|VF_VENDOR, API_VERSION);
+               return Version("Implements extban +b p: - part message bans", VF_COMMON|VF_VENDOR);
        }
 
 
index e1d7d6f9a95df38d473e1de6754da39d08bf8e97..4f73e096984fcfb6108edfe66af66e97aae44f74 100644 (file)
@@ -88,7 +88,7 @@ class ModuleOperChans : public Module
 
        Version GetVersion()
        {
-               return Version("Provides support for oper-only chans via the +O channel mode and 'O' extban", VF_VENDOR | VF_COMMON, API_VERSION);
+               return Version("Provides support for oper-only chans via the +O channel mode and 'O' extban", VF_VENDOR | VF_COMMON);
        }
 };
 
index ac4aab54851a3551f2438422843d8658058fa61a..772bef525c39aa9a0f86afd8ff5af7072f5620eb 100644 (file)
@@ -81,7 +81,7 @@ class ModuleOperjoin : public Module
 
                virtual Version GetVersion()
                {
-                       return Version("Forces opers to join the specified channel(s) on oper-up", VF_VENDOR, API_VERSION);
+                       return Version("Forces opers to join the specified channel(s) on oper-up", VF_VENDOR);
                }
 
                virtual void OnPostOper(User* user, const std::string &opertype, const std::string &opername)
index b992b33b61bea8ac9173e06be5f5caf6418759e6..6ed0c2a530cf0ec320f2a6ac4dd25f5aeb37b6e7 100644 (file)
@@ -40,7 +40,7 @@ class ModuleOperLevels : public Module
 
                virtual Version GetVersion()
                {
-                       return Version("Gives each oper type a 'level', cannot kill opers 'above' your level.", VF_VENDOR, API_VERSION);
+                       return Version("Gives each oper type a 'level', cannot kill opers 'above' your level.", VF_VENDOR);
                }
 
                virtual ModResult OnKill(User* source, User* dest, const std::string &reason)
index e0ef99a22ed210aa6b2c927bc992dd0865754b9c..4e4aaef4d9b5291db3daeeae15beb844d69eeb25 100644 (file)
@@ -32,7 +32,7 @@ class ModuleOperLog : public Module
 
        virtual Version GetVersion()
        {
-               return Version("A module which logs all oper commands to the ircd log at default loglevel.", VF_VENDOR, API_VERSION);
+               return Version("A module which logs all oper commands to the ircd log at default loglevel.", VF_VENDOR);
        }
 
 
index 3890f82e6626c947e6aabe00a9370580c43c1576..d4b873918e9019e953a8337f28920908cd5119d2 100644 (file)
@@ -45,7 +45,7 @@ class ModuleModesOnOper : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Sets (and unsets) modes on opers when they oper up", VF_VENDOR, API_VERSION);
+               return Version("Sets (and unsets) modes on opers when they oper up", VF_VENDOR);
        }
 
        virtual void OnPostOper(User* user, const std::string &opertype, const std::string &opername)
index 411cd42c86cd23ceb9a65eb809f7f98e3bebaa7e..a9f7b3b0742aa5e61bd996b3a8cd0da3936e9aa6 100644 (file)
@@ -93,7 +93,7 @@ class ModuleOpermotd : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Shows a message to opers after oper-up, adds /opermotd", VF_VENDOR, API_VERSION);
+               return Version("Shows a message to opers after oper-up, adds /opermotd", VF_VENDOR);
        }
 
 
index 0144e5c23fafbe655f8dc8efcb741742b62191b3..da1e4d242a7d20ee5afddd1e14a1b4276e1fe0d9 100644 (file)
@@ -133,7 +133,7 @@ class ModuleOperPrefixMode : public Module
 
        Version GetVersion()
        {
-               return Version("Gives opers cmode +y which provides a staff prefix.", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Gives opers cmode +y which provides a staff prefix.", VF_COMMON | VF_VENDOR);
        }
 };
 
index c737be28631c005aaa5654e60d7e9d87d4556dd5..e37282525df5054ca2639f9b7f51b27cc6fd7670 100644 (file)
@@ -207,7 +207,7 @@ class ModuleOverride : public Module
 
        Version GetVersion()
        {
-               return Version("Provides support for unreal-style oper-override",VF_VENDOR,API_VERSION);
+               return Version("Provides support for unreal-style oper-override",VF_VENDOR);
        }
 };
 
index af6256a1c9bf453a0f5e74aadc295ef1047b82a9..617983ec4df49a56422a8876ddb8969730687b62 100644 (file)
@@ -151,7 +151,7 @@ class ModuleOperHash : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Allows for hashed oper passwords",VF_VENDOR,API_VERSION);
+               return Version("Allows for hashed oper passwords",VF_VENDOR);
        }
 };
 
index bd358e4dcdad6c4bf9de407fee8d5a1505c0730f..58a54f7156f30ad7f93435766c27bcc0ef68fee3 100644 (file)
@@ -292,7 +292,7 @@ public:
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for channel mode +P to provide permanent channels",VF_COMMON|VF_VENDOR,API_VERSION);
+               return Version("Provides support for channel mode +P to provide permanent channels",VF_COMMON|VF_VENDOR);
        }
 
        virtual ModResult OnChannelPreDelete(Channel *c)
index e2910e7cd96e003dc3f3f33479dde98a629a912a..3cdf4f30df4ae7389cf98be97081120a5a63a033 100644 (file)
@@ -97,7 +97,7 @@ class ModuleRandQuote : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides random Quotes on Connect.",VF_VENDOR,API_VERSION);
+               return Version("Provides random Quotes on Connect.",VF_VENDOR);
        }
 
        virtual void OnUserConnect(User* user)
index 7d18782834dc840473371e8058ea5cd12ec331f7..9a138b7fc7ae3bff4899ab9307cff74cdfabf005 100644 (file)
@@ -134,7 +134,7 @@ class ModuleRedirect : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides channel mode +L (limit redirection)", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides channel mode +L (limit redirection)", VF_COMMON | VF_VENDOR);
        }
 };
 
index 89565618bfb61f1cdb1eaee1a6f5e4b36e2a5399..67f81fc65c68732519d19f400aec90f549a195aa 100644 (file)
@@ -214,7 +214,7 @@ class ModuleRemove : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides a /remove command, this is mostly an alternative to /kick, except makes users appear to have parted the channel", VF_OPTCOMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides a /remove command, this is mostly an alternative to /kick, except makes users appear to have parted the channel", VF_OPTCOMMON | VF_VENDOR);
        }
 
 };
index bc66afce5577bd14bb714662ada1484f0aa05849..12c373ab85b3887d9a2b94376213d7d734f68536 100644 (file)
@@ -75,7 +75,7 @@ class ModuleRestrictChans : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Only opers may create new channels if this module is loaded",VF_VENDOR,API_VERSION);
+               return Version("Only opers may create new channels if this module is loaded",VF_VENDOR);
        }
 };
 
index de7737e66993a4dbd8c9145c21900669d5a02b7f..933a533abea2815b90bf8fbd1e7e265d595b2a99 100644 (file)
@@ -62,7 +62,7 @@ class ModuleRestrictMsg : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Forbids users from messaging each other. Users may still message opers and opers may message other opers.",VF_VENDOR,API_VERSION);
+               return Version("Forbids users from messaging each other. Users may still message opers and opers may message other opers.",VF_VENDOR);
        }
 };
 
index 15eab59cfe437ae7c742fa49eb29a7fefdd8da7e..b8647b3a91502aa9990f80a83d4fa4b4afce3b1b 100644 (file)
@@ -465,7 +465,7 @@ class ModuleRIPEMD160 : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Allows for RIPEMD-160 encrypted oper passwords", VF_VENDOR|VF_SERVICEPROVIDER, API_VERSION);
+               return Version("Allows for RIPEMD-160 encrypted oper passwords", VF_VENDOR|VF_SERVICEPROVIDER);
        }
 
 };
index df5fca50490d43897049421a82f1513a49dc0f7f..63ab0ccbb0ccbcb9b82eabc14a32234f78251c4e 100644 (file)
@@ -227,7 +227,7 @@ class ModuleRLine : public Module
 
        virtual Version GetVersion()
        {
-               return Version("RLINE: Regexp user banning.", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("RLINE: Regexp user banning.", VF_COMMON | VF_VENDOR);
        }
 
        virtual void OnUserConnect(User* user)
index 28634e4f9e2c5bf42e75cb52cbee402ac27ae780..7b779a880e8f38259206c19bf8fdc157745edaf6 100644 (file)
@@ -109,7 +109,7 @@ class ModuleSajoin : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for unreal-style SAJOIN command", VF_OPTCOMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for unreal-style SAJOIN command", VF_OPTCOMMON | VF_VENDOR);
        }
 
 };
index fa4d95c969582cf9330ee1ac495c54a431c01c4d..57783be8f99bf27dfba8b0890b9a7cd440cd892b 100644 (file)
@@ -109,7 +109,7 @@ class ModuleSakick : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides a SAKICK command", VF_OPTCOMMON|VF_VENDOR, API_VERSION);
+               return Version("Provides a SAKICK command", VF_OPTCOMMON|VF_VENDOR);
        }
 
 };
index ba02c5e1645a0ab51d906c0bed1cae5266175fd3..eb30398addb2e8f6392cbd01b4b74a98b5d2f8f1 100644 (file)
@@ -55,7 +55,7 @@ class ModuleSaMode : public Module
 
        Version GetVersion()
        {
-               return Version("Provides more advanced UnrealIRCd SAMODE command", VF_VENDOR, API_VERSION);
+               return Version("Provides more advanced UnrealIRCd SAMODE command", VF_VENDOR);
        }
 
        ModResult OnPreMode(User* source,User* dest,Channel* channel, const std::vector<std::string>& parameters)
index c164de3a2b7ac541d97b0584c0fb3f56ec931508..b3f0ec32cbdc23642ef71b5c6ab1e3bf3ce2c3c4 100644 (file)
@@ -98,7 +98,7 @@ class ModuleSanick : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for SANICK command", VF_OPTCOMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for SANICK command", VF_OPTCOMMON | VF_VENDOR);
        }
 
 };
index 255648f850c0860428a10b28ac033d186c1b67d2..32a2e16fc66aef4d803834c869ef0b98e9769955 100644 (file)
@@ -109,7 +109,7 @@ class ModuleSapart : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for unreal-style SAPART command", VF_OPTCOMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for unreal-style SAPART command", VF_OPTCOMMON | VF_VENDOR);
        }
 
 };
index 0d181aa65c68c2f43a4675aca8e94b3d750bb888..d31da8a6b4402f7d84a02744b89a52d97ef2f951 100644 (file)
@@ -78,7 +78,7 @@ class ModuleSaquit : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for an SAQUIT command, exits user with a reason", VF_OPTCOMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for an SAQUIT command, exits user with a reason", VF_OPTCOMMON | VF_VENDOR);
        }
 
 };
index 42d9084676123816af6cdd8c2ed141ca0002cb1e..b3b8045ae99875d72f2473a71b17fad62d8f070c 100644 (file)
@@ -255,7 +255,7 @@ class ModuleSASL : public Module
 
        Version GetVersion()
        {
-               return Version("Provides support for IRC Authentication Layer (aka: atheme SASL) via AUTHENTICATE.",VF_VENDOR,API_VERSION);
+               return Version("Provides support for IRC Authentication Layer (aka: atheme SASL) via AUTHENTICATE.",VF_VENDOR);
        }
 
        void OnEvent(Event &ev)
index 7b2c3e5ebc07cd8db625e12cff61e1f66edee54a..eec13decc558f870b6980e6b9170d123741bc3a6 100644 (file)
@@ -67,7 +67,7 @@ class ModuleSATopic : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides a SATOPIC command", VF_VENDOR, API_VERSION);
+               return Version("Provides a SATOPIC command", VF_VENDOR);
        }
 };
 
index a83e9dc1b5ba4a3c126624f465908451d4fdcfa1..91dc3a0cde6f6a2c6cfb9e3ce43a0fb2acff1400 100644 (file)
@@ -33,7 +33,7 @@ class ModuleSecureList : public Module
 
        virtual Version GetVersion()
        {
-               return Version("A module overriding /list, and making it safe - stop those sendq problems.",VF_VENDOR,API_VERSION);
+               return Version("A module overriding /list, and making it safe - stop those sendq problems.",VF_VENDOR);
        }
 
        void OnRehash(User* user)
index ca30cfef6b7aedc4ee4d107057511394588833aa..fb660273b0e68eb2e35403715f645b56bd87edb7 100644 (file)
@@ -34,7 +34,7 @@ class ModuleSeeNicks : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for seeing local and remote nickchanges via snomasks", VF_VENDOR, API_VERSION);
+               return Version("Provides support for seeing local and remote nickchanges via snomasks", VF_VENDOR);
        }
 
 
index a040e77e5acf9b07ba82fa5284e75ff78d158365..58bacb7c8e7aa4ed7d664d0afbd7f574f3449358 100644 (file)
@@ -275,7 +275,7 @@ class ModuleServicesAccount : public Module
 
        Version GetVersion()
        {
-               return Version("Povides support for ircu-style services accounts, including chmode +R, etc.",VF_COMMON|VF_VENDOR,API_VERSION);
+               return Version("Povides support for ircu-style services accounts, including chmode +R, etc.",VF_COMMON|VF_VENDOR);
        }
 };
 
index 94662e3a547a2bb958cd22523e6c5ec6e0542976..7fd867e9b1c4657a1371b726db487e16078addf6 100644 (file)
@@ -56,7 +56,7 @@ class ModuleServProtectMode : public Module
 
        Version GetVersion()
        {
-               return Version("Provides support for Austhex style +k / UnrealIRCD +S services mode", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for Austhex style +k / UnrealIRCD +S services mode", VF_COMMON | VF_VENDOR);
        }
 
        void OnWhois(User* src, User* dst)
index cd9368d3c258cdbf1aa8e1cb16a7cebbdc77cda9..e82b5c11ce774f42c6c846e46dd951a0780ad050 100644 (file)
@@ -95,7 +95,7 @@ class ModuleSetHost : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for the SETHOST command", VF_VENDOR, API_VERSION);
+               return Version("Provides support for the SETHOST command", VF_VENDOR);
        }
 
 };
index a0a4cfe8d1ec944b50c4b61d4d667ccd1bc1d1a7..8f0dd4dc021a804f2359e23e3fa1d36f7a2f648a 100644 (file)
@@ -70,7 +70,7 @@ class ModuleSetIdent : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for the SETIDENT command", VF_VENDOR, API_VERSION);
+               return Version("Provides support for the SETIDENT command", VF_VENDOR);
        }
 
 };
index 4751d99c121b65fea206279b2dba2912e2d677b1..df58f65620ad06c49fec2e89392d503014714d73 100644 (file)
@@ -62,7 +62,7 @@ class ModuleSetIdle : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Allows opers to set their idle time", VF_VENDOR, API_VERSION);
+               return Version("Allows opers to set their idle time", VF_VENDOR);
        }
 };
 
index c0e32da7329a137c99dd3263f9280e24c4e287c9..bfb8f116f8d5d5bdbbacffe6d6af15d03d05c7ca 100644 (file)
@@ -67,7 +67,7 @@ class ModuleSetName : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for the SETNAME command", VF_VENDOR, API_VERSION);
+               return Version("Provides support for the SETNAME command", VF_VENDOR);
        }
 };
 
index f1b649f30c23c3d30c5e9db0cb3f48810d6d6b2b..1f967207b27fb49e2ef26d8fe2e11c02d28c279c 100644 (file)
@@ -273,7 +273,7 @@ class ModuleSHA256 : public Module
 
        Version GetVersion()
        {
-               return Version("Allows for SHA-256 encrypted oper passwords", VF_VENDOR|VF_SERVICEPROVIDER, API_VERSION);
+               return Version("Allows for SHA-256 encrypted oper passwords", VF_VENDOR|VF_SERVICEPROVIDER);
        }
 };
 
index 24c502ee48e44ff89cba23f327ac28f763b7aa43..be1871badb043b62674f99b8039f3bc1dd6db607 100644 (file)
@@ -102,7 +102,7 @@ class ModuleShowwhois : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Allows opers to set +W to see when a user uses WHOIS on them",VF_COMMON|VF_VENDOR,API_VERSION);
+               return Version("Allows opers to set +W to see when a user uses WHOIS on them",VF_COMMON|VF_VENDOR);
        }
 
        virtual void OnWhois(User* source, User* dest)
index 599d665a114eff445b31f0d97a14b63d7f5fe874..d4053fba05a42c9d86b30fde1f3eba06dd2ba2a1 100644 (file)
@@ -294,7 +294,7 @@ class ModuleShun : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides the /shun command, which stops a user executing all commands except PING and PONG.",VF_VENDOR|VF_COMMON,API_VERSION);
+               return Version("Provides the /shun command, which stops a user executing all commands except PING and PONG.",VF_VENDOR|VF_COMMON);
        }
 };
 
index dd7a62726d891f62f552c7a24d034aa7a1789aa0..9e57e3cd7cad66c199c6d1bde2f90bf1c91dabd0 100644 (file)
@@ -368,7 +368,7 @@ class ModuleSilence : public Module
 
        Version GetVersion()
        {
-               return Version("Provides support for the /SILENCE command", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for the /SILENCE command", VF_COMMON | VF_VENDOR);
        }
 };
 
index 12aa0d347d841c21be6bd9ba5da05190816e97c5..85953f391963e51f2f4ecd65cf42b3f995cb5bd5 100644 (file)
@@ -44,7 +44,7 @@ class ModuleSpy : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides the ability to see the complete names list of channels an oper is not a member of", VF_VENDOR, API_VERSION);
+               return Version("Provides the ability to see the complete names list of channels an oper is not a member of", VF_VENDOR);
        }
 };
 
index 61f8b8488f060faf9ed68b3328c78a109f5f7968..6763e82145d512736be922873d565dc08d34b6fb 100644 (file)
@@ -183,7 +183,7 @@ public:
 
        Version GetVersion()
        {
-               return Version("Allow/Deny connections based upon an arbitary SQL table", VF_VENDOR, API_VERSION);
+               return Version("Allow/Deny connections based upon an arbitary SQL table", VF_VENDOR);
        }
 
 };
index 9b019f931fbf1a2c6872b46174e3430922a08ce3..6bdcda6cb515d0f7f293dd5cae3d0771f2e5eec5 100644 (file)
@@ -265,7 +265,7 @@ class ModuleSQLLog : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Logs network-wide data to an SQL database", VF_VENDOR, API_VERSION);
+               return Version("Logs network-wide data to an SQL database", VF_VENDOR);
        }
 
 };
index f63cd3eab539c663f148e4fec17186b292d4ef84..269f70ad0ba37ae11eb948226c18a55632aa8b39 100644 (file)
@@ -218,7 +218,7 @@ public:
 
        Version GetVersion()
        {
-               return Version("Provides some utilities to SQL client modules, such as mapping queries to users and channels", VF_VENDOR | VF_SERVICEPROVIDER, API_VERSION);
+               return Version("Provides some utilities to SQL client modules, such as mapping queries to users and channels", VF_VENDOR | VF_SERVICEPROVIDER);
        }
 
 };
index fd185999a6eacfd48fa1ecd847b964d1c8b524ed..5a3a5e712f2c72f2422f27be5a65a63212f696b4 100644 (file)
@@ -124,7 +124,7 @@ class ModuleSSLModes : public Module
 
        Version GetVersion()
        {
-               return Version("Provides support for unreal-style channel mode +z", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for unreal-style channel mode +z", VF_COMMON | VF_VENDOR);
        }
 };
 
index 37999b3192c7cd3bf581814cf9a59f78c9892431..5b02309dc6bb6a323f37d5116e1cb30fdd896b4e 100644 (file)
@@ -134,7 +134,7 @@ class ModuleStripColor : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides channel +S mode (strip ansi colour)", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides channel +S mode (strip ansi colour)", VF_COMMON | VF_VENDOR);
        }
 
 };
index 26f9cac1a61a7be26b76e5148d09054451ea9ace..1ce3852c272ccf9991617a03447c0cfaf704fb9e 100644 (file)
@@ -202,7 +202,7 @@ class ModuleSVSHold : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Implements SVSHOLD. Like Q:Lines, but can only be added/removed by Services.", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Implements SVSHOLD. Like Q:Lines, but can only be added/removed by Services.", VF_COMMON | VF_VENDOR);
        }
 };
 
index a15d81aecfd538ce712f5c5ddfb7514c18ab5376..8949c21ef4b97f499492e4c5855d89c22a6cf412 100644 (file)
@@ -146,7 +146,7 @@ class ModuleSWhois : public Module
 
        Version GetVersion()
        {
-               return Version("Provides the SWHOIS command which allows setting of arbitary WHOIS lines", VF_OPTCOMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides the SWHOIS command which allows setting of arbitary WHOIS lines", VF_OPTCOMMON | VF_VENDOR);
        }
 };
 
index c0816419f1f1880a9c5a3f6dad7ee2fcf5232c64..02e687b2d439b9c9081a6ac30c0f336ab16f8a43 100644 (file)
@@ -187,7 +187,7 @@ class ModuleTimedBans : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Adds timed bans", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Adds timed bans", VF_COMMON | VF_VENDOR);
        }
 };
 
index e39064ca7e2c7db9894fe6648ed6eb59870a8067..01aa2e0b3fd7736266dcdb1a5d90964b426b7f19 100644 (file)
@@ -76,7 +76,7 @@ class ModuleTLine : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides /tline command used to test who a mask matches", VF_VENDOR,API_VERSION);
+               return Version("Provides /tline command used to test who a mask matches", VF_VENDOR);
        }
 };
 
index f9ede6c12ecb8d8ccbb728918c543781aeda2cea..b34b248fdacfc0e57e68d65f2bc9e5da2a7e5c88 100644 (file)
@@ -33,7 +33,7 @@ class ModuleUHNames : public Module
 
        Version GetVersion()
        {
-               return Version("Provides the UHNAMES facility.",VF_VENDOR,API_VERSION);
+               return Version("Provides the UHNAMES facility.",VF_VENDOR);
        }
 
        void On005Numeric(std::string &output)
index 1d7941b573a8539f14c65a438f4f929b6104f473..1215dd0df73ed5235a2781e44a08dc0523645d4d 100644 (file)
@@ -98,7 +98,7 @@ class ModuleUninvite : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides the UNINVITE command which lets users un-invite other users from channels (!)", VF_VENDOR | VF_COMMON, API_VERSION);
+               return Version("Provides the UNINVITE command which lets users un-invite other users from channels (!)", VF_VENDOR | VF_COMMON);
        }
 };
 
index b229aa39b053bbefab620d9f41b3482513776a1b..90e3ecfd220fb1dbed33c020bf3b968ec2654622 100644 (file)
@@ -77,7 +77,7 @@ class ModuleUserIP : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for USERIP command",VF_VENDOR,API_VERSION);
+               return Version("Provides support for USERIP command",VF_VENDOR);
        }
 
 };
index f1a074aec8aeb79f569c65c916658ba8547e3d57..a8f7b98e6817556ffad45cb3fbda19f4c953b7aa 100644 (file)
@@ -72,7 +72,7 @@ class ModuleVHost : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides masking of user hostnames via traditional /VHOST command",VF_VENDOR,API_VERSION);
+               return Version("Provides masking of user hostnames via traditional /VHOST command",VF_VENDOR);
        }
 
 };
index 1d2073972131f047deb88b8b014d9a75ccaedf1f..15470ebec9c9c514415efc027505fb771050d5cb 100644 (file)
@@ -528,7 +528,7 @@ class Modulewatch : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Provides support for the /WATCH command", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for the /WATCH command", VF_COMMON | VF_VENDOR);
        }
 };
 
index c4225d4394a2955a5ad432da4efe0ada70c2eb9d..bcb4157d65aff72d455255f76b3094cfac7eff18 100644 (file)
@@ -239,7 +239,7 @@ class ModuleXLineDB : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Keeps a dynamic log of all XLines created, and stores them in a seperate conf file (xline.db).", VF_VENDOR, API_VERSION);
+               return Version("Keeps a dynamic log of all XLines created, and stores them in a seperate conf file (xline.db).", VF_VENDOR);
        }
 };