summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorLuke Plant <L.Plant.98@cantab.net>2010-01-04 21:55:52 +0000
committerLuke Plant <L.Plant.98@cantab.net>2010-01-04 21:55:52 +0000
commit48edb177edf04854999355dfdfe23fc6ee312d7b (patch)
tree1daf23619b548cc72c60ead6c4a7fc6af67fe900 /django
parent77e27e7de73333b8610c5e8967a3681636f844b0 (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.py2
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()