mod_http_files: Fix caching the stringified directory index

This commit is contained in:
Kim Alvefur 2012-12-16 08:17:28 +01:00
parent 0197a4d854
commit 7c7e98953e

View file

@ -98,7 +98,7 @@ function serve_file(event, path)
end
end
data = "<!DOCTYPE html>\n"..tostring(html);
cache[path] = { data = html, content_type = mime_map.html; hits = 0 };
cache[path] = { data = data, content_type = mime_map.html; hits = 0 };
response.headers.content_type = mime_map.html;
end