Fixed #14412 -- Pointed contrib.comments comments-url-redirect URLpattern at the actual view instead of the deprecated view. Thanks, subsume

git-svn-id: http://code.djangoproject.com/svn/django/trunk@13995 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2010-10-06 22:56:52 +00:00
parent 47cae1a2f6
commit 157583f916
1 changed files with 1 additions and 2 deletions

View File

@ -12,6 +12,5 @@ urlpatterns = patterns('django.contrib.comments.views',
)
urlpatterns += patterns('',
url(r'^cr/(\d+)/(.+)/$', 'django.views.defaults.shortcut', name='comments-url-redirect'),
url(r'^cr/(\d+)/(.+)/$', 'django.contrib.contenttypes.views.shortcut', name='comments-url-redirect'),
)