charset should be set on content type

This commit is contained in:
Adam D. Ruppe 2011-12-02 22:32:07 -05:00
parent a128370a24
commit f11a3de560
1 changed files with 1 additions and 1 deletions

2
web.d
View File

@ -1140,7 +1140,7 @@ void run(Provider)(Cgi cgi, Provider instantiation, size_t pathInfoStartingPoint
case "document":
case "html":
default:
cgi.setResponseContentType("text/html");
cgi.setResponseContentType("text/html; charset=utf-8");
if(result.result.type == JSON_TYPE.STRING) {
auto returned = result.result.str;