From 2b6878495c19feddebd3a33149d52ef1582391e0 Mon Sep 17 00:00:00 2001 From: Ron Pedde Date: Sat, 16 Apr 2005 23:13:59 +0000 Subject: [PATCH] make config pages specify utf-8 content-type --- src/configfile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/configfile.c b/src/configfile.c index 20acfbb3..93333c76 100644 --- a/src/configfile.c +++ b/src/configfile.c @@ -94,8 +94,8 @@ typedef struct tag_contenttypes { } CONTENTTYPES; CONTENTTYPES config_default_types[] = { - { ".css", "text/css" }, - { ".txt", "text/plain" }, + { ".css", "text/css; charset=utf-8" }, + { ".txt", "text/plain; charset=utf-8" }, { NULL, NULL } };