Skip to content
Permalink
Browse files Browse the repository at this point in the history
Fixed a Cross Site Scripting (XSS) issue
  • Loading branch information
remomueller committed Apr 23, 2022
1 parent ff4b4c4 commit da44a38
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
## 57.2.0

### Enhancements
- **Security Changes**
- Fixed a Cross Site Scripting (XSS) issue

## 57.1.0 (April 19, 2022)

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/application.html.haml
Expand Up @@ -9,7 +9,7 @@
= render "layouts/meta/google"
-# Don't cache any pages
%meta{ name: "turbolinks-cache-control", content: "no-cache" }
%title= [@title, ENV["website_name"]].compact.join(" - ").html_safe
%title= [@title, ENV["website_name"]].compact.join(" - ")
= favicon_link_tag
= auto_discovery_link_tag(:rss, "#{ENV["website_url"]}/blog.atom")
= csrf_meta_tags
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/full_page.html.haml
Expand Up @@ -9,7 +9,7 @@
= render "layouts/meta/google"
-# Don't cache any pages
%meta{ name: "turbolinks-cache-control", content: "no-cache" }
%title= [@title, ENV["website_name"]].compact.join(" - ").html_safe
%title= [@title, ENV["website_name"]].compact.join(" - ")
= favicon_link_tag
= auto_discovery_link_tag(:rss, "#{ENV["website_url"]}/blog.atom")
= csrf_meta_tags
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/full_page_custom_header.html.haml
Expand Up @@ -9,7 +9,7 @@
= render "layouts/meta/google"
-# Don't cache any pages
%meta{ name: "turbolinks-cache-control", content: "no-cache" }
%title= [@title, ENV["website_name"]].compact.join(" - ").html_safe
%title= [@title, ENV["website_name"]].compact.join(" - ")
= favicon_link_tag
= auto_discovery_link_tag(:rss, "#{ENV["website_url"]}/blog.atom")
= csrf_meta_tags
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/full_page_no_header.html.haml
Expand Up @@ -9,7 +9,7 @@
= render "layouts/meta/google"
-# Don't cache any pages
%meta{ name: "turbolinks-cache-control", content: "no-cache" }
%title= [@title, ENV["website_name"]].compact.join(" - ").html_safe
%title= [@title, ENV["website_name"]].compact.join(" - ")
= favicon_link_tag
= auto_discovery_link_tag(:rss, "#{ENV["website_url"]}/blog.atom")
= csrf_meta_tags
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/full_page_sidebar.html.haml
Expand Up @@ -9,7 +9,7 @@
= render "layouts/meta/google"
-# Don't cache any pages
%meta{ name: "turbolinks-cache-control", content: "no-cache" }
%title= [@title, ENV["website_name"]].compact.join(" - ").html_safe
%title= [@title, ENV["website_name"]].compact.join(" - ")
= favicon_link_tag
= auto_discovery_link_tag(:rss, "#{ENV["website_url"]}/blog.atom")
= csrf_meta_tags
Expand Down

0 comments on commit da44a38

Please sign in to comment.