]> 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 3103a339f91c0a3c555586dd9b6b55931717d927..eb1724d93aac343ae23a559111b7317a3b4785fd 100644 (file)
@@ -8,10 +8,10 @@ module TitleHelper
   def set_title(title = false)
     if title
       @title = TitleHelper.coder.decode(title.gsub("<bdi>", "\u202a").gsub("</bdi>", "\u202c"))
-      response.headers["X-Page-Title"] = t("layouts.project_name.title") + " | " + @title
+      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