]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/title_helper.rb
Simplify "report a problem" control
[rails.git] / app / helpers / title_helper.rb
index 8cacdf2085a7dbf425406c4c33475ea12ec618e5..eb1724d93aac343ae23a559111b7317a3b4785fd 100644 (file)
@@ -1,11 +1,17 @@
+require "htmlentities"
+
 module TitleHelper
+  def self.coder
+    @coder ||= HTMLEntities.new
+  end
+
   def set_title(title = false)
     if title
-      @title = title.gsub("<bdi>", "\u202a").gsub("</bdi>", "\u202c")
-      response.headers["X-Page-Title"] = t('layouts.project_name.title') + ' | ' + @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)
     else
       @title = title
-      response.headers["X-Page-Title"] = t('layouts.project_name.title')
+      response.headers["X-Page-Title"] = URI.escape(t("layouts.project_name.title"))
     end
   end
 end