diff options
author | Robin Appelman <robin@icewind.nl> | 2016-10-20 14:26:09 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2016-10-20 14:26:09 +0200 |
commit | 3a8e75a814a8c6b394d28570e15ccd85ad57dced (patch) | |
tree | c4ee4ab0a55998864bc345ed9a9ac0583c2f00e3 /lib/private/Files/View.php | |
parent | 19b69cbf1b617d6a0b66c2d2f24af4ef81376143 (diff) | |
download | nextcloud-server-3a8e75a814a8c6b394d28570e15ccd85ad57dced.tar.gz nextcloud-server-3a8e75a814a8c6b394d28570e15ccd85ad57dced.zip |
Allow 4byte unicode filenames on supported platforms
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Files/View.php')
-rw-r--r-- | lib/private/Files/View.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/private/Files/View.php b/lib/private/Files/View.php index fa6ba20c342..56d7b716265 100644 --- a/lib/private/Files/View.php +++ b/lib/private/Files/View.php @@ -1806,13 +1806,15 @@ class View { throw new InvalidPathException($l10n->t('Dot files are not allowed')); } - // verify database - e.g. mysql only 3-byte chars - if (preg_match('%(?: + if (!\OC::$server->getDatabaseConnection()->supports4ByteText()) { + // verify database - e.g. mysql only 3-byte chars + if (preg_match('%(?: \xF0[\x90-\xBF][\x80-\xBF]{2} # planes 1-3 | [\xF1-\xF3][\x80-\xBF]{3} # planes 4-15 | \xF4[\x80-\x8F][\x80-\xBF]{2} # plane 16 )%xs', $fileName)) { - throw new InvalidPathException($l10n->t('4-byte characters are not supported in file names')); + throw new InvalidPathException($l10n->t('4-byte characters are not supported in file names')); + } } try { |