Ticket #8554: fix_comments.diff
File fix_comments.diff, 539 bytes (added by , 16 years ago) |
---|
-
django/contrib/comments/templatetags/comments.py
77 77 78 78 qs = self.comment_model.objects.filter( 79 79 content_type = ctype, 80 object_pk = object_pk,80 object_pk = str(object_pk), 81 81 site__pk = settings.SITE_ID, 82 82 is_public = True, 83 83 )