]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/title_helper.rb
Merge remote-tracking branch 'upstream/pull/4759'
[rails.git] / app / helpers / title_helper.rb
index c9b979ad5ed28ea88c4f129710633183a5ec6c39..93f1b9ea5d1ea215bd9c13bfc5e9191acd6dd4aa 100644 (file)
@@ -1,11 +1,17 @@
 module TitleHelper
-  def set_title(title = false)
+  def self.coder
+    @coder ||= HTMLEntities.new
+  end
+
+  def set_title(title = nil)
+    project_title = t("layouts.project_name.title")
+
     if title
-      title = t('layouts.project_name.title') + ' | ' + title
+      @title = TitleHelper.coder.decode(title.gsub("<bdi>", "\u202a").gsub("</bdi>", "\u202c"))
+      response.headers["X-Page-Title"] = ERB::Util.u("#{@title} | #{project_title}")
     else
-      title = t('layouts.project_name.title')
+      @title = title
+      response.headers["X-Page-Title"] = ERB::Util.u(project_title)
     end
-    response.headers["X-Page-Title"] = title 
-    @title = title
   end
 end