Skip to content

Commit

Permalink
[webui] don't specify format in the feed
Browse files Browse the repository at this point in the history
Rails will add .html, but that is invalid as . is part of the package name
  • Loading branch information
coolo committed Dec 2, 2013
1 parent af1af83 commit e73675e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/app/views/webui/feeds/commits.atom.builder
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ xml.feed(feed_opts) do |feed|
div.dl do |dl|
dl.dt "Package"
dl.dd do |dd|
url = url_for(:only_path => false, :controller => 'package', :action => 'revisions', :project => @project.name, :package => package, :format => :html, :showall => 1)
url = url_for(:only_path => false, :controller => 'package', :action => 'revisions', :project => @project.name, :package => package, :showall => 1)
dd.a package, href: url
end
dl.dt "User"
Expand Down

0 comments on commit e73675e

Please sign in to comment.