X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2ec712d6ea48e8be59197bafa89ecf46228e0d7e..aa00e6b81e007a44eceb8d1a1d70b9b99ec4bc3a:/app/helpers/title_helper.rb diff --git a/app/helpers/title_helper.rb b/app/helpers/title_helper.rb index 8cacdf208..a1a2125a1 100644 --- a/app/helpers/title_helper.rb +++ b/app/helpers/title_helper.rb @@ -1,7 +1,11 @@ +require 'htmlentities' + module TitleHelper + @@coder = HTMLEntities.new + def set_title(title = false) if title - @title = title.gsub("", "\u202a").gsub("", "\u202c") + @title = @@coder.decode(title.gsub("", "\u202a").gsub("", "\u202c")) response.headers["X-Page-Title"] = t('layouts.project_name.title') + ' | ' + @title else @title = title