From 0cc51e8fdd7cbc08f108bfed7d701bd9cb604860 Mon Sep 17 00:00:00 2001 From: Jacob Kaplan-Moss Date: Wed, 14 Jan 2009 17:00:15 +0000 Subject: 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 --- docs/ref/contrib/comments/index.txt | 2 +- docs/ref/contrib/comments/upgrade.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/ref') 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 }}

- +

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 -- cgit v1.3