]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/title_helper.rb
Convert OpenID authentication to generic third party authentication
[rails.git] / app / helpers / title_helper.rb
index da4ad8967e3c72616a7232041b319d2aab49af6d..3103a339f91c0a3c555586dd9b6b55931717d927 100644 (file)
@@ -1,6 +1,17 @@
+require "htmlentities"
+
 module TitleHelper
+  def self.coder
+    @coder ||= HTMLEntities.new
+  end
+
   def set_title(title = false)
-    response.headers["X-Page-Title"] = t('layouts.project_name.title') + (title ? ' | ' + title : '')
-    @title = title
+    if title
+      @title = TitleHelper.coder.decode(title.gsub("<bdi>", "\u202a").gsub("</bdi>", "\u202c"))
+      response.headers["X-Page-Title"] = t("layouts.project_name.title") + " | " + @title
+    else
+      @title = title
+      response.headers["X-Page-Title"] = t("layouts.project_name.title")
+    end
   end
 end