summaryrefslogtreecommitdiff
path: root/app/views/groups
diff options
context:
space:
mode:
authorblackst0ne <blackst0ne.ru@gmail.com>2017-03-12 09:05:01 +1100
committerblackst0ne <blackst0ne.ru@gmail.com>2017-03-12 09:05:01 +1100
commit7f33eb39e9b0586f978bdcb171f9980b17e1423d (patch)
treec25dd6d64575e76a604183afe9475f90ccbec484 /app/views/groups
parent9ed3db915026c6e0cd266a1c276386e3e96d2151 (diff)
downloadgitlab-ce-7f33eb39e9b0586f978bdcb171f9980b17e1423d.tar.gz
Fix xml.updated field in rss/atom feeds
Diffstat (limited to 'app/views/groups')
-rw-r--r--app/views/groups/issues.atom.builder2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/groups/issues.atom.builder b/app/views/groups/issues.atom.builder
index 0cc6466d34e..469768d83f2 100644
--- a/app/views/groups/issues.atom.builder
+++ b/app/views/groups/issues.atom.builder
@@ -4,7 +4,7 @@ xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://sear
xml.link href: url_for(params), rel: "self", type: "application/atom+xml"
xml.link href: issues_group_url, rel: "alternate", type: "text/html"
xml.id issues_group_url
- xml.updated @issues.first.created_at.xmlschema if @issues.reorder(nil).any?
+ xml.updated @issues.first.updated_at.xmlschema if @issues.reorder(nil).any?
xml << render(partial: 'issues/issue', collection: @issues) if @issues.reorder(nil).any?
end