diff options
author | pippijn <pippijn@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-07-09 11:35:00 +0000 |
---|---|---|
committer | pippijn <pippijn@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-07-09 11:35:00 +0000 |
commit | 19331dee13bf1021873dc9d2e3d72b56870c499c (patch) | |
tree | a45f4720b283cf6fbfc0f17bf1bd4e43993b585a | |
parent | fe1b94c4009fb1a4edb59fbf80dc98de65563224 (diff) |
- xml has no html entities :(
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9952 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/m_httpd_stats.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/modules/m_httpd_stats.cpp b/src/modules/m_httpd_stats.cpp index d3a5ae90d..efb72639b 100644 --- a/src/modules/m_httpd_stats.cpp +++ b/src/modules/m_httpd_stats.cpp @@ -199,9 +199,6 @@ static std::map<char, char const*> const &init_entities() entities['>'] = "gt"; entities['&'] = "amp"; entities['"'] = "quot"; - entities[246] = "ouml"; - entities[228] = "auml"; - entities[252] = "uuml"; return entities; } |