Opened 16 years ago

Closed 16 years ago

#6784 closed (invalid)

"is_public yes" doesn't work in template tag "comment_form"

Reported by: Bela Hausmann <post@…> Owned by: nobody
Component: contrib.comments Version: dev
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Ramiro Morales)

the error is in django/contrib/comments/templatetags/comments.py, line 209:

kwargs[option] = (args == 'true')

it should be:

kwargs[option] = (args == 'yes')

or the example usage in the docstring should be corrected

Attachments (1)

6784.patch (796 bytes ) - added by Matthias Kestenholz 16 years ago.

Download all attachments as: .zip

Change History (5)

comment:1 by anonymous, 16 years ago

Has patch: unset
Triage Stage: UnreviewedAccepted

comment:2 by Ramiro Morales, 16 years ago

Description: modified (diff)

by Matthias Kestenholz, 16 years ago

Attachment: 6784.patch added

comment:3 by Matthias Kestenholz, 16 years ago

Has patch: set

comment:4 by Jacob, 16 years ago

Resolution: invalid
Status: newclosed

With the new comment system added in [8557], I'm closing all comment-related tickets since they're against an old system. Please open a new ticket for this issue if it still applies in the new system.

Note: See TracTickets for help on using tickets.
Back to Top