r->content_type value on UNICODE_FS, and the second to add ETag and
Modified-Date to the file listing. If anyone sees an objection to
this thing, please scream (loudly) before I go and attack 1.3.x with
the ETag/Modified-Date Friday a.m.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86803
13f79535-47bb-0310-9956-
ffa450edef68
return HTTP_FORBIDDEN;
}
- r->content_type = "text/html";
#if APR_HAS_UNICODE_FS
r->content_type = "text/html;charset=utf-8";
+#else
+ r->content_type = "text/html";
#endif
+ ap_update_mtime(r, r->finfo.mtime);
+ ap_set_last_modified(r);
+ ap_set_etag(r);
ap_send_http_header(r);