Skip to content

Commit

Permalink
Fixed a Cross Site Scripting (XSS) issue
Browse files Browse the repository at this point in the history
  • Loading branch information
remomueller committed Apr 23, 2022
1 parent a9d9610 commit 9993425
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## 29.1.0

### Enhancements
- **Security Changes**
- Fixed a Cross Site Scripting (XSS) issue
- **Gem Changes**
- Update to Ruby 3.1.2

Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/application.html.haml
Original file line number Diff line number Diff line change
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, "MyApnea"].compact.join(" - ").html_safe
%title= [@title, "MyApnea"].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
Original file line number Diff line number Diff line change
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, "MyApnea"].compact.join(" - ").html_safe
%title= [@title, "MyApnea"].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
Original file line number Diff line number Diff line change
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, "MyApnea"].compact.join(" - ").html_safe
%title= [@title, "MyApnea"].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.haml
Original file line number Diff line number Diff line change
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, "MyApnea"].compact.join(" - ").html_safe
%title= [@title, "MyApnea"].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
Original file line number Diff line number Diff line change
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, "MyApnea"].compact.join(" - ").html_safe
%title= [@title, "MyApnea"].compact.join(" - ")
= favicon_link_tag
= auto_discovery_link_tag(:rss, "#{ENV["website_url"]}/blog.atom")
= csrf_meta_tags
Expand Down

0 comments on commit 9993425

Please sign in to comment.