Merge branch 'pull/843' into titles

This commit is contained in:
Andy Allan 2017-11-22 14:42:16 +00:00
commit cb87f02642
2 changed files with 4 additions and 4 deletions

View file

@ -8,7 +8,7 @@ module TitleHelper
def set_title(title = nil)
if title
@title = TitleHelper.coder.decode(title.gsub("<bdi>", "\u202a").gsub("</bdi>", "\u202c"))
response.headers["X-Page-Title"] = ERB::Util.u(t("layouts.project_name.title") + " | " + @title)
response.headers["X-Page-Title"] = ERB::Util.u(@title + " | " + t("layouts.project_name.title"))
else
@title = title
response.headers["X-Page-Title"] = ERB::Util.u(t("layouts.project_name.title"))