2
0
mirror of https://git.zx2c4.com/cgit synced 2025-08-30 22:05:08 +00:00

Add commit->msg_encoding, allocate msg dynamicly.

This commit is contained in:
Jonathan Bastien-Filiatrault
2007-10-26 18:09:06 -04:00
parent 72ede12551
commit 3845e177e4
4 changed files with 10 additions and 1 deletions

View File

@@ -352,7 +352,7 @@ void cgit_print_age(time_t t, time_t max_relative, char *format)
void cgit_print_docstart(char *title, struct cacheitem *item)
{
html("Content-Type: text/html; charset=utf-8\n");
html("Content-Type: text/html; charset=" PAGE_ENCODING "\n");
htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime));
htmlf("Expires: %s\n", http_date(item->st.st_mtime +
ttl_seconds(item->ttl)));