diff options
author | Robert Speicher <rspeicher@gmail.com> | 2016-01-07 17:00:13 -0500 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2016-01-07 20:01:08 -0500 |
commit | 4408dc0bd18dc1cddda8b413dbf57143290f5d73 (patch) | |
tree | 6944cda375a0c31acd62422a299a65ca2e9a7b01 /app/helpers | |
parent | 63444936559cffba174a69c01d2425fb6b5e61cf (diff) | |
download | gitlab-ce-4408dc0bd18dc1cddda8b413dbf57143290f5d73.tar.gz |
Use `xmlschema` where even more appropriate!
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/issues_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/issues_helper.rb b/app/helpers/issues_helper.rb index acc0e867e8e..a7080ddfefb 100644 --- a/app/helpers/issues_helper.rb +++ b/app/helpers/issues_helper.rb @@ -80,7 +80,7 @@ module IssuesHelper xml.link href: namespace_project_issue_url(issue.project.namespace, issue.project, issue) xml.title truncate(issue.title, length: 80) - xml.updated issue.created_at.to_s(:iso8601) + xml.updated issue.created_at.xmlschema xml.media :thumbnail, width: "40", height: "40", url: image_url(avatar_icon(issue.author_email)) xml.author do |author| xml.name issue.author_name |