Django

Code

Changeset 377

Show
Ignore:
Timestamp:
08/01/05 15:07:31 (3 years ago)
Author:
adrian
Message:

Fixed #180 -- Removed 'enctype' from FREE_COMMENT_FORM template in contrib.comments.templatetags

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/django/contrib/comments/templatetags/comments.py

    r316 r377  
    4545FREE_COMMENT_FORM = ''' 
    4646{% if display_form %} 
    47 <form enctype="multipart/form-data" action="/comments/postfree/" method="post"> 
     47<form action="/comments/postfree/" method="post"> 
    4848<p>Your name: <input type="text" id="id_person_name" name="person_name" /></p> 
    4949<p>Comment:<br /><textarea name="comment" id="id_comment" rows="10" cols="60"></textarea></p>