]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/title_helper.rb
Page titles: put specific page title at the start not the end
[rails.git] / app / helpers / title_helper.rb
index da4ad8967e3c72616a7232041b319d2aab49af6d..e72069ff013a6a51308341f3ca2643f50b2db35a 100644 (file)
@@ -1,6 +1,15 @@
+require 'htmlentities'
+
 module TitleHelper
+  @@coder = HTMLEntities.new
+
   def set_title(title = false)
-    response.headers["X-Page-Title"] = t('layouts.project_name.title') + (title ? ' | ' + title : '')
-    @title = title
+    if title
+      @title = @@coder.decode(title.gsub("<bdi>", "\u202a").gsub("</bdi>", "\u202c"))
+      response.headers["X-Page-Title"] = @title + ' | ' + t('layouts.project_name.title')
+    else
+      @title = title
+      response.headers["X-Page-Title"] = t('layouts.project_name.title')
+    end
   end
 end