Skip to content

Commit

Permalink
Merge pull request ckan#1589 from regardscitoyens/pr-fix-rss-links
Browse files Browse the repository at this point in the history
Fix broken links in RSS feed
  • Loading branch information
nigelbabu committed Mar 10, 2014
2 parents 4753adc + 5c76e78 commit 248a2cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckan/controllers/revision.py
Original file line number Diff line number Diff line change
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 248a2cc

Please sign in to comment.