Commit 157583f9 authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

Fixed #14412 -- Pointed contrib.comments comments-url-redirect URLpattern at...

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
parent 47cae1a2
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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'),
)