diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-20 11:37:07 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2020-11-20 11:37:07 +0000 |
commit | cce9e49dd576aa945fcb5025b52693aa81c810e5 (patch) | |
tree | 8597181592e4010305373645ad2cf83c049fecec /app/views | |
parent | a96cd79938f1c3c126f659ec44bd939b890d7ff7 (diff) | |
download | redmine-cce9e49dd576aa945fcb5025b52693aa81c810e5.tar.gz redmine-cce9e49dd576aa945fcb5025b52693aa81c810e5.zip |
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
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/common/feed.atom.builder | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/common/feed.atom.builder b/app/views/common/feed.atom.builder index 023c15601..5498c27e2 100644 --- a/app/views/common/feed.atom.builder +++ b/app/views/common/feed.atom.builder @@ -11,7 +11,7 @@ xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do xml.icon favicon_url xml.updated((@items.first ? @items.first.event_datetime : Time.now).xmlschema) 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| xml.entry do url = url_for(item.event_url(:only_path => false, :protocol => protocol, :host => host)) |