]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_opermodes.cpp
Move _ext to replace the original, SVSSILENCE comes next
[user/henk/code/inspircd.git] / src / modules / m_opermodes.cpp
index 545a3f103d5738c5078cbe655c45104bb97e0960..dfd55a9707231889a1bb02f7a9f56580238047ae 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
@@ -46,7 +46,7 @@ class ModuleModesOnOper : public Module
        
        virtual Version GetVersion()
        {
-               return Version(1,1,0,1,VF_VENDOR,API_VERSION);
+               return Version(1,2,0,1,VF_VENDOR,API_VERSION);
        }
        
        virtual void OnPostOper(User* user, const std::string &opertype, const std::string &opername)
@@ -92,8 +92,8 @@ class ModuleModesOnOper : public Module
                        smodes = "+" + smodes;
 
                std::string buf;
-               stringstream ss(smodes);
-               vector<string> tokens;
+               std::stringstream ss(smodes);
+               std::vector<std::string> tokens;
 
                // split into modes and mode params
                while (ss >> buf)