From 5c59c9a5b15a308ba00937cc51f98c72cba38ba7 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Wed, 25 Oct 2000 02:46:40 +0000 Subject: [PATCH] Ok here it is: Win32 utf-8 native unicode filename support. There are just too many folks to credit... so this goes out from the entire ApacheCon hacking team :-) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86740 13f79535-47bb-0310-9956-ffa450edef68 --- modules/generators/mod_autoindex.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/generators/mod_autoindex.c b/modules/generators/mod_autoindex.c index ff0c990795..840d70e047 100644 --- a/modules/generators/mod_autoindex.c +++ b/modules/generators/mod_autoindex.c @@ -1558,6 +1558,9 @@ static int index_directory(request_rec *r, } r->content_type = "text/html"; +#if APR_HAS_UNICODE_FS + r->content_type = "text/html;charset=utf-8"; +#endif ap_send_http_header(r); -- 2.50.1