summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-08-01 20:07:31 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-08-01 20:07:31 +0000
commit006e9e789baabdf3c5077e2ab39747f217ddf659 (patch)
treefe1cbdf7b00279b4965a970da836641e259afdef
parent77faac0cb7719bc84aa5653a6179a6e7c0bf4bf9 (diff)
Fixed #180 -- Removed 'enctype' from FREE_COMMENT_FORM template in contrib.comments.templatetags
git-svn-id: http://code.djangoproject.com/svn/django/trunk@377 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-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 bb7150fc17..f54ef1e29e 100644
--- a/django/contrib/comments/templatetags/comments.py
+++ b/django/contrib/comments/templatetags/comments.py
@@ -44,7 +44,7 @@ COMMENT_FORM = '''
FREE_COMMENT_FORM = '''
{% if display_form %}
-<form enctype="multipart/form-data" action="/comments/postfree/" method="post">
+<form action="/comments/postfree/" method="post">
<p>Your name: <input type="text" id="id_person_name" name="person_name" /></p>
<p>Comment:<br /><textarea name="comment" id="id_comment" rows="10" cols="60"></textarea></p>
<input type="hidden" name="options" value="{{ options }}" />