diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2009-10-07 15:36:28 +0200 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2009-10-07 15:36:28 +0200 |
commit | 23299493c28f92e5a75f1feedb5510283dd1a737 (patch) | |
tree | e1b688f039d8637ed0915cd4ced50b1417a68788 | |
parent | 6bdb116a0fbbbcd152b4f738cbdb52ef313dcf2e (diff) |
Add a Last-Modified header to all responses.
darcs-hash:d1cdfea360fffa6cf9dda1a8bf966e6dcc7ca421
-rwxr-xr-x | journal.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/journal.lisp b/journal.lisp index df55e92..e1fe6a5 100755 --- a/journal.lisp +++ b/journal.lisp @@ -346,7 +346,7 @@ ;; termination, which makes generating a Last-Modified header ;; feel slower to the end user rather than faster. ;; - ;; (http-add-header "Last-Modified" (http-timestamp (compute-journal-last-modified-date))) + (http-add-header "Last-Modified" (http-timestamp (compute-journal-last-modified-date))) (http-add-header "Content-Language" "de") (http-add-header "Cache-Control" "public") (http-send-headers "text/html; charset=UTF-8") |