summaryrefslogtreecommitdiff
path: root/docs/ref/contrib
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2009-01-14 17:00:15 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2009-01-14 17:00:15 +0000
commit0cc51e8fdd7cbc08f108bfed7d701bd9cb604860 (patch)
tree5be74f00c11c209aab525fecf9f5b3d7f1478095 /docs/ref/contrib
parent7dd0abc113bc131ba037e83275e3bd9530b68903 (diff)
A handful of fixes to django.contrib.comments:
* Fixed #9143, #9429, and #9439 (was r9730 on trunk) * Fixed #9959: comment preview documentation example (was r9731 on trunk) * Fixed #9346: comment upgrade SQL in documentation. (was r9732 on trunk). git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9738 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/contrib')
-rw-r--r--docs/ref/contrib/comments/index.txt2
-rw-r--r--docs/ref/contrib/comments/upgrade.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/contrib/comments/index.txt b/docs/ref/contrib/comments/index.txt
index b6812a8e32..5aeebe32d7 100644
--- a/docs/ref/contrib/comments/index.txt
+++ b/docs/ref/contrib/comments/index.txt
@@ -156,7 +156,7 @@ A complete form might look like::
<form action="{% comment_form_target %}" method="POST">
{{ form }}
<p class="submit">
- <input type="submit" name="submit" class="submit-post" value="Preview">
+ <input type="submit" name="preview" class="submit-post" value="Preview">
</p>
</form>
diff --git a/docs/ref/contrib/comments/upgrade.txt b/docs/ref/contrib/comments/upgrade.txt
index ff70547cd4..b3656f31dd 100644
--- a/docs/ref/contrib/comments/upgrade.txt
+++ b/docs/ref/contrib/comments/upgrade.txt
@@ -48,7 +48,7 @@ run the following SQL:
comment, submit_date, ip_address, is_public, is_removed)
SELECT
content_type_id, object_id, site_id, person_name, '', '', comment,
- submit_date, ip_address, is_public, approved
+ submit_date, ip_address, is_public, not approved
FROM comments_freecomment;
INSERT INTO django_comments