diff options
| author | Luke Plant <L.Plant.98@cantab.net> | 2010-01-04 21:55:52 +0000 |
|---|---|---|
| committer | Luke Plant <L.Plant.98@cantab.net> | 2010-01-04 21:55:52 +0000 |
| commit | 48edb177edf04854999355dfdfe23fc6ee312d7b (patch) | |
| tree | 1daf23619b548cc72c60ead6c4a7fc6af67fe900 /django | |
| parent | 77e27e7de73333b8610c5e8967a3681636f844b0 (diff) | |
Fixed #12053 - form examples don't validate according to w3c
Thanks to skyl for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12086 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
| -rw-r--r-- | django/contrib/comments/templatetags/comments.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/comments/templatetags/comments.py b/django/contrib/comments/templatetags/comments.py index 8e62f91eed..42691c63e4 100644 --- a/django/contrib/comments/templatetags/comments.py +++ b/django/contrib/comments/templatetags/comments.py @@ -306,7 +306,7 @@ def comment_form_target(): Example:: - <form action="{% comment_form_target %}" method="POST"> + <form action="{% comment_form_target %}" method="post"> """ return comments.get_form_target() |
