X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0d187c5c711c5381872c21309fa74087b4896c49..908f9b5276602f21f7d492c9949c934dfb1e9365:/app/helpers/title_helper.rb diff --git a/app/helpers/title_helper.rb b/app/helpers/title_helper.rb index 8cacdf208..88a5a2a74 100644 --- a/app/helpers/title_helper.rb +++ b/app/helpers/title_helper.rb @@ -1,11 +1,17 @@ +require "htmlentities" + module TitleHelper - def set_title(title = false) + def self.coder + @coder ||= HTMLEntities.new + end + + def set_title(title = nil) if title - @title = title.gsub("", "\u202a").gsub("", "\u202c") - response.headers["X-Page-Title"] = t('layouts.project_name.title') + ' | ' + @title + @title = TitleHelper.coder.decode(title.gsub("", "\u202a").gsub("", "\u202c")) + response.headers["X-Page-Title"] = ERB::Util.u(@title + " | " + t("layouts.project_name.title")) else @title = title - response.headers["X-Page-Title"] = t('layouts.project_name.title') + response.headers["X-Page-Title"] = ERB::Util.u(t("layouts.project_name.title")) end end end