X-Git-Url: https://git.openstreetmap.org/osqa.git/blobdiff_plain/094acc5f44c3a7779f42b3d84c86213ba6a1003c..2c0d3ce5ba9e6e7cd64570028683be4bdb52f52a:/forum/urls.py diff --git a/forum/urls.py b/forum/urls.py index 9d3c4d6..51cccef 100644 --- a/forum/urls.py +++ b/forum/urls.py @@ -84,7 +84,8 @@ urlpatterns += patterns('', , url(r'^%s(?P\d+)/' % _('flag/'), app.commands.flag_post, name='flag_post'), url(r'^%s(?P\d+)/' % _('delete/'), app.commands.delete_post, name='delete_post'), - url(r'^%s(?P\d+)/(?P\d+)?/$' % _('subscribe/'), app.commands.subscribe, name="subscribe"), + url(r'^%s(?P\d+)/(?P\d+)?$' % _('subscribe/'), app.commands.subscribe, name="subscribe"), + url(r'^%s(?P\d+)/$' % _('subscribe/'), app.commands.subscribe, name="subscribe_simple"), url(r'^%s' % _('matching_tags/'), app.commands.matching_tags, name='matching_tags'), url(r'^%s(?P\d+)/' % _('node_markdown/'), app.commands.node_markdown, name='node_markdown'), url(r'^%s(?P\d+)/' % _('convert/'), app.commands.convert_to_comment,