summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-10-05 05:20:40 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-10-05 05:20:40 +0000
commite88b70b779def702696a294803313092df6b5ee3 (patch)
treecaf1f1693fcb97a454d9d0d9ffe674a2f21c7a41
parentccc2387fd21f5a93e8467f2fbb6462c6fae195c5 (diff)
[1.0.X] Fixed #9100 -- Added a missing CSS class to a submit button.
Thanks, mordyovits and thejaswi_puthraya. Backport of r9120 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9127 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/contrib/comments/templates/comments/preview.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/comments/templates/comments/preview.html b/django/contrib/comments/templates/comments/preview.html
index dc4326b542..8c7a434b18 100644
--- a/django/contrib/comments/templates/comments/preview.html
+++ b/django/contrib/comments/templates/comments/preview.html
@@ -12,7 +12,7 @@
<h1>{% trans "Preview your comment" %}</h1>
<blockquote>{{ comment|linebreaks }}</blockquote>
<p>
- {% trans "and" %} <input type="submit" name="submit" value="{% trans "Post your comment" %}" id="submit" /> {% trans "or make changes" %}:
+ {% trans "and" %} <input type="submit" name="submit" class="submit-post" value="{% trans "Post your comment" %}" id="submit" /> {% trans "or make changes" %}:
</p>
{% endif %}
{% for field in form %}