diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-05-03 12:06:33 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-05-03 12:06:33 +0000 |
commit | c0d37f45572f633b57ec4e9ff3719e71f3e7c909 (patch) | |
tree | 3b3e983b99724547f71bed89fba3a1da32b9ac51 /src/modules | |
parent | a1a5c322ce3310cdb439bf4b05182ae8d31a93ea (diff) |
(for now), comment out opercount from individual servers in XML stats. This can be addressed in a future release. Bandaid fix for bug #846, reported by SnoFox.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11356 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_httpd_stats.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_httpd_stats.cpp b/src/modules/m_httpd_stats.cpp index 9dabfac81..6c8e7909f 100644 --- a/src/modules/m_httpd_stats.cpp +++ b/src/modules/m_httpd_stats.cpp @@ -165,7 +165,8 @@ class ModuleHttpStats : public Module data << "<parentname>" << b->parentname << "</parentname>"; data << "<gecos>" << b->gecos << "</gecos>"; data << "<usercount>" << b->usercount << "</usercount>"; - data << "<opercount>" << b->opercount << "</opercount>"; +// This is currently not implemented, so, commented out. +// data << "<opercount>" << b->opercount << "</opercount>"; data << "<lagmillisecs>" << b->latencyms << "</lagmillisecs>"; data << "</server>"; } |