1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

remove unneeded semicolon from app/views/common/feed.atom.builder

git-svn-id: http://svn.redmine.org/redmine/trunk@20453 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-11-20 11:37:07 +00:00
parent a96cd79938
commit cce9e49dd5

View File

@ -11,7 +11,7 @@ xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do
xml.icon favicon_url xml.icon favicon_url
xml.updated((@items.first ? @items.first.event_datetime : Time.now).xmlschema) xml.updated((@items.first ? @items.first.event_datetime : Time.now).xmlschema)
xml.author { xml.name "#{Setting.app_title}" } xml.author { xml.name "#{Setting.app_title}" }
xml.generator(:uri => Redmine::Info.url) { xml.text! Redmine::Info.app_name; } xml.generator(:uri => Redmine::Info.url) {xml.text! Redmine::Info.app_name}
@items.each do |item| @items.each do |item|
xml.entry do xml.entry do
url = url_for(item.event_url(:only_path => false, :protocol => protocol, :host => host)) url = url_for(item.event_url(:only_path => false, :protocol => protocol, :host => host))