Skip to content

Commit

Permalink
[1.0.X] Fixed #9675: added note about upgrading the URLconf to the co…
Browse files Browse the repository at this point in the history
…mment upgrade guide. Backport of [10746] from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10748 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
jacobian committed May 12, 2009
1 parent da4ddab commit a1d6fda
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/ref/contrib/comments/upgrade.txt
Expand Up @@ -26,6 +26,15 @@ The main changes from the old system are:
new comment, and ``{% render_comment_form %}``, which renders said form
using the ``comments/form.html`` template.

* The way comments are include in your URLconf have changed; you'll need to
replace::

(r'^comments/', include('django.contrib.comments.urls.comments')),

with::

(r'^comments/', include('django.contrib.comments.urls')),

Upgrading data
--------------

Expand Down

0 comments on commit a1d6fda

Please sign in to comment.