client->putLine("WWW-Authenticate: Basic realm=\"PowerDNS\"\n");
client->putLine("Connection: close\n");
- client->putLine("Content-type: text/html; charset=UTF-8\n\n");
+ client->putLine("Content-Type: text/html; charset=utf-8\n\n");
client->putLine("Please enter a valid password!\n");
client->close();
delete client;
if(!custom) {
client->putLine("HTTP/1.1 200 OK\n");
client->putLine("Connection: close\n");
- client->putLine("Content-type: text/html; charset=UTF-8\n\n");
+ client->putLine("Content-Type: text/html; charset=utf-8\n\n");
}
client->putLine(ret);
}
else {
client->putLine("HTTP/1.1 404 Not found\n");
client->putLine("Connection: close\n");
- client->putLine("Content-type: text/html; charset=UTF-8\n\n");
+ client->putLine("Content-Type: text/html; charset=utf-8\n\n");
// FIXME: CSS problem?
client->putLine("<html><body><h1>Did not find file '"+baseUrl+"'</body></html>\n");
}