]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/base.cpp
Added documentation to manpages of Request, Event and ModuleMessage
[user/henk/code/inspircd.git] / src / base.cpp
index 511c8152d95cac453e064dba0b178466059efc95..72741eb90d4d10fd715e6d5994d76b6449101745 100644 (file)
@@ -22,6 +22,8 @@
 #include "inspircd.h"
 #include "modules.h"
 
+extern time_t TIME;
+
 bool Extensible::Extend(std::string key, char* p)
 {
        // only add an item if it doesnt already exist
@@ -52,7 +54,6 @@ char* Extensible::GetExt(std::string key)
        log(DEBUG,"Checking extension items for %s",key.c_str());
        if (this->Extension_Items.find(key) != this->Extension_Items.end())
        {
-               log(DEBUG,"Found item %s %s",key.c_str(),(this->Extension_Items.find(key))->second);
                return (this->Extension_Items.find(key))->second;
        }
        log(DEBUG,"Cant find item %s",key.c_str());