diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-09-03 22:46:39 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-09-03 22:46:39 +0000 |
| commit | 96a417f91dfdc93d35e53db068346b2e189510df (patch) | |
| tree | 9992fecd70b1f60f684564c8a26a63258a21c17e | |
| parent | 75528786a9dcbba5c8df3f21f59ad1e01f1e9027 (diff) | |
Fixed two XHTML errors pointed out by Jarek Zgoda. Refs #8855.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8958 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/comments/templates/comments/form.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/django/contrib/comments/templates/comments/form.html b/django/contrib/comments/templates/comments/form.html index 5c43c62298..4861243745 100644 --- a/django/contrib/comments/templates/comments/form.html +++ b/django/contrib/comments/templates/comments/form.html @@ -13,7 +13,7 @@ {% endif %} {% endfor %} <p class="submit"> - <input type="submit" name="submit" class="submit-post" value="Post"> - <input type="submit" name="submit" class="submit-preview" value="Preview"> + <input type="submit" name="submit" class="submit-post" value="Post" /> + <input type="submit" name="submit" class="submit-preview" value="Preview" /> </p> -</form>
\ No newline at end of file +</form> |
