Skip to content
Snippets Groups Projects
Unverified Commit 4476a454 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix #6717: Do not double html-encode page titles (#6720)

parent 58a46337
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@
%meta{ name: 'theme-color', content: '#282c37' }/
%meta{ name: 'apple-mobile-web-app-capable', content: 'yes' }/
%title= content_for?(:page_title) ? safe_join([yield(:page_title).chomp, ' - ', title]) : title
%title= content_for?(:page_title) ? safe_join([yield(:page_title).chomp.html_safe, title], ' - ') : title
= stylesheet_pack_tag 'common', media: 'all'
= stylesheet_pack_tag current_theme, media: 'all'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment