diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2009-01-08 21:28:46 +0100 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2009-01-08 21:28:46 +0100 |
commit | 9d66e793ee35f61b0ae1ae57a90948cc34bd4577 (patch) | |
tree | ed41127b18e37e9ad6f245c8440b1a23551bc577 | |
parent | 5827dd125dc6505a560271bf3cdaa8bde313b204 (diff) |
Fix comment feed title.
darcs-hash:8a6b92dcefe4f71c84974764b7c056651c8ed691
-rwxr-xr-x | journal.lisp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/journal.lisp b/journal.lisp index b5c0508..ca57fac 100755 --- a/journal.lisp +++ b/journal.lisp @@ -62,8 +62,9 @@ 0))) (with-xml-output (*standard-output* :encoding "utf-8") (with-tag ("feed" '(("xmlns" "http://www.w3.org/2005/Atom"))) - (emit-simple-tags :title "Kommentare — Kompottkins Weisheiten" - :updated (atom-time + (with-tag ("title") + (xml-as-is "Kommentare — Kompottkins Weisheiten")) + (emit-simple-tags :updated (atom-time (max (or (single-object (select [max [slot-value 'journal-entry 'date]] :from [journal-entry] |