X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0d187c5c711c5381872c21309fa74087b4896c49..046fbdc1777e0e9dfd400eb56d560f46bc69ddec:/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