summaryrefslogtreecommitdiff
path: root/journal-content.lisp
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2007-09-30 00:45:33 +0200
committerMatthias Benkard <code@mail.matthias.benkard.de>2007-09-30 00:45:33 +0200
commit033516172c84bc772c7deeea8875445b4e7d48a2 (patch)
tree8ea45022b42dad37c50e4fda3a7d288b1dc17931 /journal-content.lisp
parent6392eaedc789a57cdddb123456ef1a0affb81713 (diff)
Fix comment viewing.
darcs-hash:abb4db3e848ccfb0b9c90e8648460d25122e66aa
Diffstat (limited to 'journal-content.lisp')
-rw-r--r--journal-content.lisp11
1 files changed, 5 insertions, 6 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)))