diff options
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 b568f8d64..48fff68e3 100644 --- a/src/modules/m_httpd_stats.cpp +++ b/src/modules/m_httpd_stats.cpp @@ -82,7 +82,7 @@ namespace Stats // Base64 encode the entire string and wrap it in a CDATA. ret.clear(); ret += "<![CDATA["; - ret += BinToBase64(str); + ret += Base64::Encode(str); ret += "]]>"; break; } |
