Skip to content

Commit

Permalink
Stop allowing .htm + .html by default
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Jan 23, 2021
1 parent c93347a commit 8ee85a8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG-v3.6.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,3 +219,6 @@
- Fixed a bug where generated URLs would include the token from the current request, even if it had expired or met its usage limit.
- Fixed a bug where Number field settings and input values could be stored incorrectly if the user’s formatting locale used a different decimal character that the application language.
- Fixed a MySQL deadlock error that could occur when running background jobs. ([#7179](https://github.com/craftcms/cms/issues/7179))

### Security
- The default `allowedFileExtensions` config setting value no longer includes `htm` or `html`.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
### Fixed
- Fixed a bug where D3-formatted numbers were getting extra `.00`s added to them if the Intl extension wasn’t installed. ([#7402](https://github.com/craftcms/cms/issues/7402))

### Security
- The default `allowedFileExtensions` config setting value no longer includes `htm` or `html`.

## 3.6.0-RC4 - 2020-01-19

### Added
Expand Down
2 changes: 0 additions & 2 deletions src/config/GeneralConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,6 @@ class GeneralConfig extends BaseObject
'gif',
'gz',
'gzip',
'htm',
'html',
'itt',
'jp2',
'jpeg',
Expand Down

0 comments on commit 8ee85a8

Please sign in to comment.