summaryrefslogtreecommitdiff
path: root/src/modules/m_httpd_stats.cpp
diff options
context:
space:
mode:
authorgenius3000 <genius3000@g3k.solutions>2018-04-10 11:05:11 -0600
committerPeter Powell <petpow@saberuk.com>2018-04-11 18:59:17 +0100
commite3f22fcf31cd2e789d1be90cf0edf3e82829b54e (patch)
treeb9d53dea1ca074cf8434414b22fcde2e5a08bdd6 /src/modules/m_httpd_stats.cpp
parente6db1df5a657ea0603e1ec0b1ea9b056264d470f (diff)
Change some usage of "gecos" to "real name"
Within the example configs, helpops, some server sent messages, and simple code comments: change the primary usage of "gecos" to "real name" (or "realname" where fitting).
Diffstat (limited to 'src/modules/m_httpd_stats.cpp')
-rw-r--r--src/modules/m_httpd_stats.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_httpd_stats.cpp b/src/modules/m_httpd_stats.cpp
index bc5d53c94..818c06297 100644
--- a/src/modules/m_httpd_stats.cpp
+++ b/src/modules/m_httpd_stats.cpp
@@ -183,8 +183,8 @@ class ModuleHttpStats : public Module, public HTTPRequestEventListener
data << "<user>";
data << "<nickname>" << u->nick << "</nickname><uuid>" << u->uuid << "</uuid><realhost>"
- << u->GetRealHost() << "</realhost><displayhost>" << u->GetDisplayedHost() << "</displayhost><gecos>"
- << Sanitize(u->fullname) << "</gecos><server>" << u->server->GetName() << "</server>";
+ << u->GetRealHost() << "</realhost><displayhost>" << u->GetDisplayedHost() << "</displayhost><realname>"
+ << Sanitize(u->fullname) << "</realname><server>" << u->server->GetName() << "</server>";
if (u->IsAway())
data << "<away>" << Sanitize(u->awaymsg) << "</away><awaytime>" << u->awaytime << "</awaytime>";
if (u->IsOper())