summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2016-02-11 21:45:25 +0100
committerRoeland Jago Douma <rullzer@owncloud.com>2016-02-12 07:49:31 +0100
commit6bd0d51b2a9742108f64b406fba55d5af6264fb2 (patch)
tree3a3bb6376c6076a07517b6d53d8259ed1ef44641 /lib
parent594ba8695b2de2a73c82023202245c7fda3c27bf (diff)
downloadnextcloud-server-6bd0d51b2a9742108f64b406fba55d5af6264fb2.tar.gz
nextcloud-server-6bd0d51b2a9742108f64b406fba55d5af6264fb2.zip
More characters are allowed on POSIX systems
Diffstat (limited to 'lib')
-rw-r--r--lib/public/constants.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/public/constants.php b/lib/public/constants.php
index 518fbcf7ebe..4dd6793a13a 100644
--- a/lib/public/constants.php
+++ b/lib/public/constants.php
@@ -68,7 +68,8 @@ class Constants {
const PERMISSION_ALL = 31;
/**
- * @since 8.0.0
+ * @since 8.0.0 - Updated in 9.0.0 to allow all POSIX chars since we no
+ * longer support windows as server platform.
*/
- const FILENAME_INVALID_CHARS = "\\/<>:\"|?*\n";
+ const FILENAME_INVALID_CHARS = "\\/";
}