tag should be html safe

This commit is contained in:
Sam 2014-11-12 10:06:02 +11:00
parent c98d0a8eb6
commit ec496a71b1
1 changed files with 5 additions and 1 deletions

View File

@ -15,7 +15,11 @@ class DiscourseStylesheets
def self.stylesheet_link_tag(target = :desktop)
tag = cache[target]
return tag if tag
if tag
tag.html_safe
return tag
end
@lock.synchronize do
builder = self.new(target)