Browse Source

Rails3: helper: html_safe for robot_exclusion_tag

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7967 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.3.0
Toshi MARUYAMA 12 years ago
parent
commit
1d00ec11a0
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      app/helpers/application_helper.rb

+ 1
- 1
app/helpers/application_helper.rb View File

@@ -1023,7 +1023,7 @@ module ApplicationHelper
end

def robot_exclusion_tag
'<meta name="robots" content="noindex,follow,noarchive" />'
'<meta name="robots" content="noindex,follow,noarchive" />'.html_safe
end

# Returns true if arg is expected in the API response

Loading…
Cancel
Save