diff options
| author | Mel Collins <mel@raumkraut.net> | 2013-05-13 13:38:53 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-08-12 07:15:59 -0400 |
| commit | 6bdb3b1135d1bd7b2dc24131b9d26ac19ebdba67 (patch) | |
| tree | 4f9e44d7b494b737ed11d7346ff7258c182cfbb3 /docs/ref | |
| parent | ab680725bfb2f0d79cff26331b30a3d583c55a80 (diff) | |
Fixed #13518 -- Added FILE_UPLOAD_DIRECTORY_PERMISSIONS setting
This setting does for new directories what FILE_UPLOAD_PERMISSIONS
does for new files.
Thanks jacob@ for the suggestion.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/settings.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index 38d7275aed..90545d96c5 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -1108,6 +1108,19 @@ Default: ``2621440`` (i.e. 2.5 MB). The maximum size (in bytes) that an upload will be before it gets streamed to the file system. See :doc:`/topics/files` for details. +.. setting:: FILE_UPLOAD_DIRECTORY_PERMISSIONS + +FILE_UPLOAD_DIRECTORY_PERMISSIONS +--------------------------------- + +.. versionadded:: 1.7 + +Default: ``None`` + +The numeric mode to apply to directories created in the process of +uploading files. This value mirrors the functionality and caveats of +the :setting:`FILE_UPLOAD_PERMISSIONS` setting. + .. setting:: FILE_UPLOAD_PERMISSIONS FILE_UPLOAD_PERMISSIONS |
