diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-05-11 14:57:30 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-05-11 14:57:30 +0000 |
commit | 3fd8e7afd7f266b10813a0ec2153758d0c922ef0 (patch) | |
tree | 93398735839c44d36c6a428407c3554a0814fe6c /src | |
parent | b887f45a0a483c21e3bdff5d59cf9a242e64210b (diff) |
Dont obscure channel keys in the stats
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9704 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_httpd_stats.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_httpd_stats.cpp b/src/modules/m_httpd_stats.cpp index ff51c28fe..131a9dca1 100644 --- a/src/modules/m_httpd_stats.cpp +++ b/src/modules/m_httpd_stats.cpp @@ -126,7 +126,7 @@ class ModuleHttpStats : public Module data << "<channelhalfops>" << c->GetHalfoppedUsers()->size() << "</channelhalfops>"; data << "<channelvoices>" << c->GetVoicedUsers()->size() << "</channelvoices>"; data << "<channeltopic>" << Sanitize(c->topic) << "</channeltopic>"; - data << "<channelmodes>" << Sanitize(c->ChanModes(false)) << "</channelmodes>"; + data << "<channelmodes>" << Sanitize(c->ChanModes(true)) << "</channelmodes>"; CUList* ulist = c->GetUsers(); for (CUList::iterator x = ulist->begin(); x != ulist->end(); ++x) |