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:
Jean-Philippe Lang 2009-01-29 13:54:44 +00:00
parent f1aa0df326
commit 32d4378198
1 changed files with 1 additions and 1 deletions

View File

@ -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