diff options
| author | 2009-09-26 14:13:13 +0000 | |
|---|---|---|
| committer | 2009-09-26 14:13:13 +0000 | |
| commit | 6d03943426dcce76ba66567a9b18425a5ebb4c0c (patch) | |
| tree | bedffa6d2a65a9ef556405224a6d7a181c8a1ba5 /src/modules/m_httpd_stats.cpp | |
| parent | Add FD_WANT_SINGLE_WRITE to efficiently replace FD_WANT_POLL_WRITE (diff) | |
Remove InspIRCd* parameters and fields
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11763 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_httpd_stats.cpp')
| -rw-r--r-- | src/modules/m_httpd_stats.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/modules/m_httpd_stats.cpp b/src/modules/m_httpd_stats.cpp index 01d77d806..46f474e2d 100644 --- a/src/modules/m_httpd_stats.cpp +++ b/src/modules/m_httpd_stats.cpp @@ -28,12 +28,11 @@ class ModuleHttpStats : public Module void ReadConfig() { - ConfigReader c(ServerInstance); + ConfigReader c; this->stylesheet = c.ReadValue("httpstats", "stylesheet", 0); } - ModuleHttpStats(InspIRCd* Me) : Module(Me) - { + ModuleHttpStats() { ReadConfig(); this->changed = true; Implementation eventlist[] = { I_OnEvent, I_OnRequest }; |
