Skip to content
Permalink
Browse files Browse the repository at this point in the history
Fixed an XSS vulnerability.
  • Loading branch information
angrybrad committed Jun 27, 2019
1 parent 4e8c89e commit 76a2168
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG-v3.md
@@ -1,5 +1,10 @@
# Release Notes for Craft CMS 3.x

## Unreleased

### Security
- Fixed an XSS vulnerability.

## 3.1.32.1 - 2019-06-25

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/templates/settings/sections/_edit.html
Expand Up @@ -68,7 +68,7 @@
{% endif %}
{% set siteRows = siteRows|merge({
(site.handle): {
heading: site.name|t('site'),
heading: site.name|t('site')|e,
enabled: include('_includes/forms/lightswitch', {
name: 'sites['~site.handle~'][enabled]',
on: brandNewSection or siteSettings,
Expand Down

0 comments on commit 76a2168

Please sign in to comment.