diff options
author | Johan Sørensen <johan@johansorensen.com> | 2009-02-11 00:19:35 +0100 |
---|---|---|
committer | Johan Sørensen <johan@johansorensen.com> | 2009-04-22 14:05:12 +0200 |
commit | 4920a9133bd895ff57233496f6c907d6db95455b (patch) | |
tree | f71cf61d5297a40f37166395f1922072bd48991b /app/controllers/comments_controller.rb | |
parent | 90296ef7deaf413c8697574e44fe81301264266a (diff) | |
download | gitorious-mainline-outdated-4920a9133bd895ff57233496f6c907d6db95455b.zip gitorious-mainline-outdated-4920a9133bd895ff57233496f6c907d6db95455b.tar.gz gitorious-mainline-outdated-4920a9133bd895ff57233496f6c907d6db95455b.tar.bz2 |
Update to Rails 2.3RC1
Diffstat (limited to 'app/controllers/comments_controller.rb')
-rw-r--r-- | app/controllers/comments_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/comments_controller.rb b/app/controllers/comments_controller.rb index 3c1b6a4..9ff9881 100644 --- a/app/controllers/comments_controller.rb +++ b/app/controllers/comments_controller.rb @@ -24,7 +24,7 @@ class CommentsController < ApplicationController def index @comments = @repository.comments.find(:all, :include => :user) @merge_request_count = @repository.merge_requests.count_open - @atom_auto_discovery_url = formatted_project_repository_comments_path(@project, @repository, :atom) + @atom_auto_discovery_url = project_repository_comments_path(@project, @repository, :format => :atom) respond_to do |format| format.html { } format.atom { } |