Skip to content

Commit

Permalink
Add missing controller to fix broken rss links
Browse files Browse the repository at this point in the history
  • Loading branch information
RouxRC committed Mar 9, 2014
1 parent 6d19ae4 commit 5c76e78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/controllers/revision.py
Expand Up @@ -113,7 +113,7 @@ def list(self):
item_title += pkgs
if revision.message:
item_title += ': %s' % (revision.message or '')
item_link = h.url_for(action='read', id=revision.id)
item_link = h.url_for(controller='revision', action='read', id=revision.id)
item_description = _('Datasets affected: %s.\n') % pkgs
item_description += '%s' % (revision.message or '')
item_author_name = revision.author
Expand Down

0 comments on commit 5c76e78

Please sign in to comment.