diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-02-23 02:25:23 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-02-28 22:19:25 +0100 |
commit | 1017f4f34acd75a7a22b9667b60356c43d773496 (patch) | |
tree | 4c8bf1e1f1f520f265975cd699a6fafe393e7f55 /config | |
parent | 27642d3e6dc01a387762e0b13fc66557e0c835b2 (diff) | |
download | nextcloud-server-1017f4f34acd75a7a22b9667b60356c43d773496.tar.gz nextcloud-server-1017f4f34acd75a7a22b9667b60356c43d773496.zip |
fix: Also expose forbidden filename character in the capabilities
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'config')
-rw-r--r-- | config/config.sample.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index d999b1e39b0..79f813a4dae 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -1962,6 +1962,8 @@ $CONFIG = [ /** * Blacklist characters from being used in filenames. This is useful if you * have a filesystem or OS which does not support certain characters like windows. + * + * The '/' and '\' characters are always forbidden. * * Example for windows systems: ``array('?', '<', '>', ':', '*', '|', '"', chr(0), "\n", "\r")`` * see https://en.wikipedia.org/wiki/Comparison_of_file_systems#Limits |