diff options
| author | Florian Apolloner <florian@apolloner.eu> | 2012-09-05 18:05:28 +0300 |
|---|---|---|
| committer | Florian Apolloner <florian@apolloner.eu> | 2012-09-17 22:53:10 +0200 |
| commit | e8c6aff3bf31b775dd70581b1cf6f86d5abd4001 (patch) | |
| tree | ee06839f9a103a85d7e5f39b43aef571e8b94211 /docs | |
| parent | c2c8d4044e2c6345f6e8d0f8617755dec7cd55d5 (diff) | |
Fixed #18947 -- Don't make uploaded files executeable by default.
Thanks to Lauri Tirkkonen for the patch.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.5.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/1.5.txt b/docs/releases/1.5.txt index 6420239f47..26b6ad1bfa 100644 --- a/docs/releases/1.5.txt +++ b/docs/releases/1.5.txt @@ -333,6 +333,11 @@ Miscellaneous function at :func:`django.utils.text.slugify`. Similarly, ``remove_tags`` is available at :func:`django.utils.html.remove_tags`. +* Uploaded files are no longer created as executable by default. If you need + them to be executeable change :setting:`FILE_UPLOAD_PERMISSIONS` to your + needs. The new default value is `0666` (octal) and the current umask value + is first masked out. + Features deprecated in 1.5 ========================== |
