mirror of
https://github.com/redmine/redmine.git
synced 2026-06-16 03:20:09 +02:00
Adds rel='nofollow' attribute to other formats download links (#2491).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2334 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -25,7 +25,7 @@ module Redmine
|
||||
def link_to(name, options={})
|
||||
url = { :format => name.to_s.downcase }.merge(options.delete(:url) || {})
|
||||
caption = options.delete(:caption) || name
|
||||
html_options = { :class => name.to_s.downcase }.merge(options)
|
||||
html_options = { :class => name.to_s.downcase, :rel => 'nofollow' }.merge(options)
|
||||
@view.content_tag('span', @view.link_to(caption, url, html_options))
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user