diff --git a/app/controllers/projects_controller.rb b/app/controllers/projects_controller.rb index ce4b24b8..cfac01b9 100644 --- a/app/controllers/projects_controller.rb +++ b/app/controllers/projects_controller.rb @@ -240,7 +240,7 @@ class ProjectsController < ApplicationController render :layout => false if request.xhr? } format.atom { - title = (@scope.size == 1) ? l("label_#{@scope.first.singularize}_plural") : l(:label_activity) + title = (@activity.scope.size == 1) ? l("label_#{@activity.scope.first.singularize}_plural") : l(:label_activity) render_feed(events, :title => "#{@project || Setting.app_title}: #{title}") } end diff --git a/test/functional/projects_controller_test.rb b/test/functional/projects_controller_test.rb index 935d5ba7..03773ccd 100644 --- a/test/functional/projects_controller_test.rb +++ b/test/functional/projects_controller_test.rb @@ -202,6 +202,12 @@ class ProjectsControllerTest < Test::Unit::TestCase } end + def test_activity_atom_feed + get :activity, :format => 'atom' + assert_response :success + assert_template 'common/feed.atom.rxml' + end + def test_calendar get :calendar, :id => 1 assert_response :success