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