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 3193720 commit 6523bb1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
## 84.2.0

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

## 84.1.0 (August 7, 2021)

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/application.html.haml
Expand Up @@ -11,7 +11,7 @@
= render "layouts/meta/apple"
-# Don't cache any pages
%meta{ name: "turbolinks-cache-control", content: "no-cache" }
%title= [@title, @subject.try(:subject_code_was), @project.try(:name), ENV["website_name"]].flatten.compact.uniq.join(" - ").html_safe
%title= [@title, @subject.try(:subject_code_was), @project.try(:name), ENV["website_name"]].flatten.compact.uniq.join(" - ")
= render "layouts/meta/favicon"
= csrf_meta_tags
= stylesheet_link_tag "application", media: "all", data: { turbolinks_track: "reload" }
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/full_page.html.haml
Expand Up @@ -10,7 +10,7 @@
= render "layouts/meta/apple"
-# Don't cache any pages
%meta{ name: "turbolinks-cache-control", content: "no-cache" }
%title= [@title, @subject.try(:subject_code_was), @project.try(:name), ENV["website_name"]].flatten.compact.uniq.join(" - ").html_safe
%title= [@title, @subject.try(:subject_code_was), @project.try(:name), ENV["website_name"]].flatten.compact.uniq.join(" - ")
= render "layouts/meta/favicon"
= csrf_meta_tags
= stylesheet_link_tag "application", media: "all", data: { turbolinks_track: "reload" }
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/full_page_sidebar.html.haml
Expand Up @@ -11,7 +11,7 @@
= render "layouts/meta/apple"
-# Don't cache any pages
%meta{ name: "turbolinks-cache-control", content: "no-cache" }
%title= [@title, @subject.try(:subject_code_was), @project.try(:name), ENV["website_name"]].flatten.compact.uniq.join(" - ").html_safe
%title= [@title, @subject.try(:subject_code_was), @project.try(:name), ENV["website_name"]].flatten.compact.uniq.join(" - ")
= render "layouts/meta/favicon"
= csrf_meta_tags
= stylesheet_link_tag "application", media: "all", data: { turbolinks_track: "reload" }
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/full_page_sidebar_dark.html.haml
Expand Up @@ -11,7 +11,7 @@
= render "layouts/meta/apple"
-# Don't cache any pages
%meta{ name: "turbolinks-cache-control", content: "no-cache" }
%title= [@title, @subject.try(:subject_code_was), @project.try(:name), ENV["website_name"]].flatten.compact.uniq.join(" - ").html_safe
%title= [@title, @subject.try(:subject_code_was), @project.try(:name), ENV["website_name"]].flatten.compact.uniq.join(" - ")
= render "layouts/meta/favicon"
= csrf_meta_tags
= stylesheet_link_tag "application", media: "all", data: { turbolinks_track: "reload" }
Expand Down

0 comments on commit 6523bb1

Please sign in to comment.