]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_httpd_stats.cpp
Stop hiding users when a prefix is set on them, fixes apparent desyncs
[user/henk/code/inspircd.git] / src / modules / m_httpd_stats.cpp
index 00c6a5d7f7669f615803a37159ea5ce18d58337f..a682cd14c71b50a5019e76c6d173668283f02161 100644 (file)
 class ModuleHttpStats : public Module
 {
        static std::map<char, char const*> const &entities;
-       std::string stylesheet;
-       bool changed;
 
  public:
 
-       void ReadConfig()
-       {
-               ConfigReader c;
-               this->stylesheet = c.ReadValue("httpstats", "stylesheet", 0);
-       }
-
        ModuleHttpStats()       {
-               ReadConfig();
-               this->changed = true;
                Implementation eventlist[] = { I_OnEvent };
                ServerInstance->Modules->Attach(eventlist, this, 1);
        }