]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/title_helper.rb
Remove the report_type helper and use the model_name.human to look up translations.
[rails.git] / app / helpers / title_helper.rb
index 8b1eb53b6dfdcae08ea8291a4c2d393ed1b7bad0..88a5a2a74ae3a42a6970fdd94239d11d9efcf9c9 100644 (file)
@@ -8,10 +8,10 @@ module TitleHelper
   def set_title(title = nil)
     if title
       @title = TitleHelper.coder.decode(title.gsub("<bdi>", "\u202a").gsub("</bdi>", "\u202c"))
-      response.headers["X-Page-Title"] = URI.escape(t("layouts.project_name.title") + " | " + @title)
+      response.headers["X-Page-Title"] = ERB::Util.u(@title + " | " + t("layouts.project_name.title"))
     else
       @title = title
-      response.headers["X-Page-Title"] = URI.escape(t("layouts.project_name.title"))
+      response.headers["X-Page-Title"] = ERB::Util.u(t("layouts.project_name.title"))
     end
   end
 end