X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/0d187c5c711c5381872c21309fa74087b4896c49..ac7bb003ec9726d23d0a537f347c2dd4c8f7204a:/app/helpers/title_helper.rb?ds=sidebyside
diff --git a/app/helpers/title_helper.rb b/app/helpers/title_helper.rb
index 8cacdf208..a1a2125a1 100644
--- a/app/helpers/title_helper.rb
+++ b/app/helpers/title_helper.rb
@@ -1,7 +1,11 @@
+require 'htmlentities'
+
module TitleHelper
+ @@coder = HTMLEntities.new
+
def set_title(title = false)
if title
- @title = title.gsub("", "\u202a").gsub("", "\u202c")
+ @title = @@coder.decode(title.gsub("", "\u202a").gsub("", "\u202c"))
response.headers["X-Page-Title"] = t('layouts.project_name.title') + ' | ' + @title
else
@title = title