diff options
-rw-r--r-- | journal-content.lisp | 11 | ||||
-rwxr-xr-x | journal.lisp | 3 |
2 files changed, 6 insertions, 8 deletions
diff --git a/journal-content.lisp b/journal-content.lisp index 9140a51..2991ec4 100644 --- a/journal-content.lisp +++ b/journal-content.lisp @@ -145,12 +145,11 @@ (defmethod comments-about ((journal-entry journal-entry) &key ordered-p) #.(locally-enable-sql-reader-syntax) (prog1 (if ordered-p - (mapcar #'car - (select 'journal-comment 'journal-entry - :where [= [slot-value 'journal-comment 'entry-id] - [slot-value 'journal-entry 'id]] - :order-by '([journal-comment.date]) - :flatp t)) + (select 'journal-comment + :where [= [slot-value 'journal-comment 'entry-id] + (id-of journal-entry)] + :order-by '([date]) + :flatp t) (%comments-about journal-entry)) #.(restore-sql-reader-syntax-state))) diff --git a/journal.lisp b/journal.lisp index bc7bd2b..2ca1919 100755 --- a/journal.lisp +++ b/journal.lisp @@ -170,8 +170,7 @@ (when (and comments-p (not (null (comments-about journal-entry)))) (<:div :class :journal-comments (<:h2 "Kommentare") - (dolist (comment (comments-about journal-entry - :ordered-p t)) + (dolist (comment (comments-about journal-entry :ordered-p t)) (with-slots (author body date id email website) comment (<:div :class :journal-comment |