(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
This commit is contained in:
w00t 2009-05-03 12:06:33 +00:00
parent a1a5c322ce
commit c0d37f4557

View File

@ -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>";
}