]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_chanprotect.cpp
Note where to find the docs.
[user/henk/code/inspircd.git] / src / modules / m_chanprotect.cpp
index 95641891fa6858c1716635056791b59b8c777469..a1107b6ce031afe5dc249909d873a93ed5e085a5 100644 (file)
@@ -372,7 +372,7 @@ class ModuleChanProtect : public Module
                // the config option for it is set
 
                if (FirstInGetsFounder && !chan)
-                       privs = QPrefix + "@";
+                       privs = std::string(1, QPrefix) + "@";
 
                return 0;
        }
@@ -490,7 +490,7 @@ class ModuleChanProtect : public Module
 
        virtual Version GetVersion()
        {
-               return Version(1, 2, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION);
        }
 };