##// END OF EJS Templates
remove hard-coded '.rxml' from ApplicationController 'render_feed' (#6317)...
Toshi MARUYAMA -
r7453:2a27cc41f056
parent child
Show More
@@ -334,7 +334,8 class ApplicationController < ActionController::Base
334 334 @items.sort! {|x,y| y.event_datetime <=> x.event_datetime }
335 335 @items = @items.slice(0, Setting.feeds_limit.to_i)
336 336 @title = options[:title] || Setting.app_title
337 render :template => "common/feed.atom.rxml", :layout => false, :content_type => 'application/atom+xml'
337 render :template => "common/feed.atom", :layout => false,
338 :content_type => 'application/atom+xml'
338 339 end
339 340
340 341 # TODO: remove in Redmine 1.4
General Comments 0
You need to be logged in to leave comments. Login now