diff options
-rwxr-xr-x | journal.lisp | 4 | ||||
-rw-r--r-- | main.lisp | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/journal.lisp b/journal.lisp index bfd5f76..957a0db 100755 --- a/journal.lisp +++ b/journal.lisp @@ -44,9 +44,7 @@ ((:edit :preview) (values "/~D/preview" post-id)) (:post-comment (values "/~D" post-id)) (:save (values "/~D/save" post-id)) - (:css (if (eq *site* :mst-plus) - "/../../journal.css" - "/../journal.css")))))) + (:css "/../journal.css"))))) (defun show-atom-feed () @@ -191,6 +191,7 @@ (dolist (env-var '("HTTP_CACHE_CONTROL" "HTTP_IF_MODIFIED_SINCE")) (pushnew env-var http::*http-env-vars*)) (http:http-init) + (setq cffi:*default-foreign-encoding* :iso-8859-15) (handler-bind ((error #' (lambda (e) |