Opened 17 years ago
Last modified 17 years ago
#6784 closed
"is_public yes" doesn't work in template tag "comment_form" — at Version 2
Description (last modified by ) ¶
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
Change History (3)
comment:1 by , 17 years ago
Has patch: | unset |
---|---|
Triage Stage: | Unreviewed → Accepted |
comment:2 by , 17 years ago
Description: | modified (diff) |
---|
by , 17 years ago
Attachment: | 6784.patch added |
---|
Note:
See TracTickets
for help on using tickets.