]> 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 88a5a2a74ae3a42a6970fdd94239d11d9efcf9c9..93f1b9ea5d1ea215bd9c13bfc5e9191acd6dd4aa 100644 (file)
@@ -1,17 +1,17 @@
-require "htmlentities"
-
 module TitleHelper
   def self.coder
     @coder ||= HTMLEntities.new
   end
 
   def set_title(title = nil)
+    project_title = t("layouts.project_name.title")
+
     if title
       @title = TitleHelper.coder.decode(title.gsub("<bdi>", "\u202a").gsub("</bdi>", "\u202c"))
-      response.headers["X-Page-Title"] = ERB::Util.u(@title + " | " + t("layouts.project_name.title"))
+      response.headers["X-Page-Title"] = ERB::Util.u("#{@title} | #{project_title}")
     else
       @title = title
-      response.headers["X-Page-Title"] = ERB::Util.u(t("layouts.project_name.title"))
+      response.headers["X-Page-Title"] = ERB::Util.u(project_title)
     end
   end
 end