Commit 85cd639cb8a1cad4217769cc308487caae0f4586
1 parent
a46a63d3
Exists in
master
and in
29 other branches
Fix rss icon
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
app/views/content_viewer/_article_toolbar.html.erb
| ... | ... | @@ -62,7 +62,7 @@ |
| 62 | 62 | <% if @page.blog? and !@page.image.nil? %> |
| 63 | 63 | <div class="blog-cover"><%= image_tag(@page.image.public_filename())%></div> |
| 64 | 64 | <% end %> |
| 65 | - <%= link_to(image_tag('icons-mime/rss-feed.png'), @page.feed.url, :class => 'blog-feed-link') if @page.has_posts? && @page.feed %> | |
| 65 | + <%= link_to(image_tag('/images/icons-mime/rss-feed.png'), @page.feed.url, :class => 'blog-feed-link') if @page.has_posts? && @page.feed %> | |
| 66 | 66 | <%= @plugins.dispatch(:article_header_extra_contents, @page).collect { |content| instance_exec(&content) }.join("") %> |
| 67 | 67 | <%= article_title(@page, :no_link => true) %> |
| 68 | 68 | <%= article_translations(@page) %> | ... | ... |
app/views/profile/content_tagged.html.erb
| ... | ... | @@ -5,7 +5,7 @@ |
| 5 | 5 | <h1><%= _('Content tagged with "%s"') % escaped_tag %></h1> |
| 6 | 6 | |
| 7 | 7 | <p> |
| 8 | -<%= link_to image_tag('icons-mime/rss-feed.png', :alt => _('Feed for this tag'), :title => _('Feed for this tag')), tag_feed_path, :class => 'blog-feed-link'%> | |
| 8 | +<%= link_to image_tag('/images/icons-mime/rss-feed.png', :alt => _('Feed for this tag'), :title => _('Feed for this tag')), tag_feed_path, :class => 'blog-feed-link'%> | |
| 9 | 9 | </p> |
| 10 | 10 | |
| 11 | 11 | <% cache_timeout(@tag_cache_key, 4.hour) do %> | ... | ... |