Opened 18 years ago
Last modified 17 years ago
#6784 closed
"is_public yes" doesn't work in template tag "comment_form" — at Initial Version
| Reported by: | 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
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
Note:
See TracTickets
for help on using tickets.