Ticket #9956: comment-urls-fix.diff

File comment-urls-fix.diff, 463 bytes (added by Devin S, 16 years ago)

svn diff of the fix

  • django/contrib/comments/urls.py

     
    1313)
    1414
    1515urlpatterns += patterns('',
    16     url(r'^cr/(\d+)/(\w+)/$', 'django.views.defaults.shortcut', name='comments-url-redirect'),
     16    url(r'^cr/(\d+)/((\w|-)+)/$', 'django.views.defaults.shortcut', name='comments-url-redirect'),
    1717)
    1818
Back to Top