Browse Source

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

pull/4/head
Eugen Rochko 6 years ago
committed by GitHub
parent
commit
4476a45444
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/views/layouts/application.html.haml

+ 1
- 1
app/views/layouts/application.html.haml View File

@ -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'

Loading…
Cancel
Save