diff options
| author | 2009-10-21 23:45:44 +0000 | |
|---|---|---|
| committer | 2009-10-21 23:45:44 +0000 | |
| commit | a30abe26fc803900eaf5dc4c08a31aa1d3c9c89f (patch) | |
| tree | 7d59c15a9c23401b91e100ebb9e98df2c7179e53 /src/modules/m_httpd_stats.cpp | |
| parent | Move all local-only fields to LocalUser (diff) | |
Change User::oper to an OperInfo reference
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11945 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_httpd_stats.cpp')
| -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 3339a9ca8..8899a363e 100644 --- a/src/modules/m_httpd_stats.cpp +++ b/src/modules/m_httpd_stats.cpp @@ -167,7 +167,7 @@ class ModuleHttpStats : public Module if (IS_AWAY(u)) data << "<away>" << Sanitize(u->awaymsg) << "</away><awaytime>" << u->awaytime << "</awaytime>"; if (IS_OPER(u)) - data << "<opertype>" << Sanitize(u->oper) << "</opertype>"; + data << "<opertype>" << Sanitize(u->oper->NameStr()) << "</opertype>"; data << "<modes>" << u->FormatModes() << "</modes><ident>" << Sanitize(u->ident) << "</ident>"; LocalUser* lu = IS_LOCAL(u); if (lu) |
