From 5b28a2f2926aff54f24d86e9ec67c4cb58e25543 Mon Sep 17 00:00:00 2001 From: Martin Linkhorst Date: Thu, 26 Jul 2012 16:20:22 +0200 Subject: [PATCH] make robots html safe --- app/helpers/application_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 90c7b64702..96c572f145 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -1014,7 +1014,7 @@ module ApplicationHelper # @param [optional, String] content the content of the ROBOTS tag. # defaults to no index, follow, and no archive def robot_exclusion_tag(content="NOINDEX,FOLLOW,NOARCHIVE") - "" + "".html_safe end # Returns true if arg is expected in the API response