diff options
author | Marius Balteanu <marius.balteanu@zitec.com> | 2024-10-19 10:06:26 +0000 |
---|---|---|
committer | Marius Balteanu <marius.balteanu@zitec.com> | 2024-10-19 10:06:26 +0000 |
commit | d1008280d8bead4757646d53f18d0b76fa20b429 (patch) | |
tree | 6424d06cc95da85711dc27460e39a976760527fd /app/views/common | |
parent | ffb78c12c35192aff8e13389577ef9564ab278ee (diff) | |
download | redmine-d1008280d8bead4757646d53f18d0b76fa20b429.tar.gz redmine-d1008280d8bead4757646d53f18d0b76fa20b429.zip |
Renames and improves methods provided by @IconsHelper@ (#23980).
git-svn-id: https://svn.redmine.org/redmine/trunk@23145 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/common')
-rw-r--r-- | app/views/common/error.html.erb | 2 | ||||
-rw-r--r-- | app/views/common/feed.atom.builder | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/common/error.html.erb b/app/views/common/error.html.erb index 4a7e2bf0c..007063f9c 100644 --- a/app/views/common/error.html.erb +++ b/app/views/common/error.html.erb @@ -5,7 +5,7 @@ <% end %> <% if @archived_project && User.current.admin? %> - <p><%= link_to icon_with_label('unlock', l(:button_unarchive)), unarchive_project_path(@archived_project), :method => :post, :class => 'icon icon-unlock' %></p> + <p><%= link_to sprite_icon('unlock', l(:button_unarchive)), unarchive_project_path(@archived_project), :method => :post, :class => 'icon icon-unlock' %></p> <% end %> <p><a href="javascript:history.back()"><%= l(:button_back) %></a></p> diff --git a/app/views/common/feed.atom.builder b/app/views/common/feed.atom.builder index eed514277..b349595e3 100644 --- a/app/views/common/feed.atom.builder +++ b/app/views/common/feed.atom.builder @@ -6,7 +6,7 @@ xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do xml.link "rel" => "self", "href" => url_for(:params => request.query_parameters, :only_path => false, :format => 'atom') xml.link "rel" => "alternate", "href" => url_for(:params => request.query_parameters.merge(:format => nil, :key => nil), :only_path => false) xml.id home_url - xml.icon favicon_url + 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} |