Merge pull request #899 from nextcloud/nfd-default

[us] Disable NFD encoding wrapper by default
This commit is contained in:
Robin Appelman 2016-08-17 14:46:52 +02:00 committed by GitHub
commit 5a599d5c4e
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ class OC_Util {
}); });
\OC\Files\Filesystem::addStorageWrapper('oc_encoding', function ($mountPoint, \OCP\Files\Storage $storage, \OCP\Files\Mount\IMountPoint $mount) { \OC\Files\Filesystem::addStorageWrapper('oc_encoding', function ($mountPoint, \OCP\Files\Storage $storage, \OCP\Files\Mount\IMountPoint $mount) {
if ($mount->getOption('encoding_compatibility', true) && !$storage->instanceOfStorage('\OC\Files\Storage\Shared') && !$storage->isLocal()) { if ($mount->getOption('encoding_compatibility', false) && !$storage->instanceOfStorage('\OC\Files\Storage\Shared') && !$storage->isLocal()) {
return new \OC\Files\Storage\Wrapper\Encoding(['storage' => $storage]); return new \OC\Files\Storage\Wrapper\Encoding(['storage' => $storage]);
} }
return $storage; return $storage;