diff options
| author | 2007-08-28 23:32:41 +0000 | |
|---|---|---|
| committer | 2007-08-28 23:32:41 +0000 | |
| commit | 8394be69a0e3b5fea617c69b69aa27daf547fc4e (patch) | |
| tree | ccf40646d8ed2145d9c6a3693e073434fe33bc4c /src/modules/m_httpd_stats.cpp | |
| parent | Tidy up here, same tidyup cannot go back to stable as it involves uids (diff) | |
Move everything module-related out of InspIRCd and into ModuleManager, there is a ModuleManager instantiated as InspIRCd::Modules. Several of the function names have changed slightly as well. e.g. Instance->FindModule(m_foobar.so); is now Instance->Modules->Find(m_foobar.so);
All modules in the core distribution should also be updated in line with these changes.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7985 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_httpd_stats.cpp')
| -rw-r--r-- | src/modules/m_httpd_stats.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_httpd_stats.cpp b/src/modules/m_httpd_stats.cpp index 9e89bd149..445af1826 100644 --- a/src/modules/m_httpd_stats.cpp +++ b/src/modules/m_httpd_stats.cpp @@ -117,11 +117,11 @@ class ModuleHttpStats : public Module data << "</general>"; data << "<modulelist>"; - for (int i = 0; i <= ServerInstance->GetModuleCount(); i++) + for (int i = 0; i <= ServerInstance->Modules->GetCount(); i++) { if (!ServerInstance->Config->module_names[i].empty()) { - Version v = ServerInstance->modules[i]->GetVersion(); + Version v = ServerInstance->Modules->modules[i]->GetVersion(); data << "<module><name>" << ServerInstance->Config->module_names[i] << "</name><version>" << v.Major << "." << v.Minor << "." << v.Revision << "." << v.Build << "</version></module>"; } |
