From a1caa8b82931793c4976aaff2a81b32b5d9e5248 Mon Sep 17 00:00:00 2001 From: Christian Hofstaedtler Date: Tue, 5 Aug 2014 10:44:38 +0200 Subject: [PATCH] webserver: htmlescape VERSION and config name Those should not really have html characters in them, but let's be sure. --- pdns/ws-auth.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdns/ws-auth.cc b/pdns/ws-auth.cc index 68a2333cb..541a69fb8 100644 --- a/pdns/ws-auth.cc +++ b/pdns/ws-auth.cc @@ -224,9 +224,9 @@ void AuthWebServer::indexfunction(HttpRequest* req, HttpResponse* resp) ret<<"
"<"; - ret<<"PowerDNS "VERSION; + ret<<"PowerDNS "<
"<"; -- 2.40.0