From: William A. Rowe Jr Date: Wed, 25 Oct 2000 02:46:40 +0000 (+0000) Subject: Ok here it is: Win32 utf-8 native unicode filename support. X-Git-Tag: APACHE_2_0_ALPHA_8~247 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5c59c9a5b15a308ba00937cc51f98c72cba38ba7;p=apache 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 --- 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);