summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2016-05-23 13:45:33 +0200
committerVincent Petry <pvince81@owncloud.com>2016-05-23 13:45:33 +0200
commitbd87f6747376063b05ad5f1f7ce12446dddd5697 (patch)
tree26675acaa2c5e33728df746642aa071213744f99 /apps/files_trashbin
parent862d8f43e5d89a2549d6ffb324e4450bc0fd536d (diff)
parentbac8e13324f888e3d23851528943c9ae9f34cf12 (diff)
downloadnextcloud-server-bd87f6747376063b05ad5f1f7ce12446dddd5697.tar.gz
nextcloud-server-bd87f6747376063b05ad5f1f7ce12446dddd5697.zip
Merge pull request #24349 from owncloud/nfd-storagewrapper
Add wrapper for NFD encoding workaround
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r--apps/files_trashbin/lib/Storage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/lib/Storage.php b/apps/files_trashbin/lib/Storage.php
index c4c523810ac..b621c511db7 100644
--- a/apps/files_trashbin/lib/Storage.php
+++ b/apps/files_trashbin/lib/Storage.php
@@ -150,7 +150,7 @@ class Storage extends Wrapper {
return false;
}
- $normalized = Filesystem::normalizePath($this->mountPoint . '/' . $path);
+ $normalized = Filesystem::normalizePath($this->mountPoint . '/' . $path, true, false, true);
$result = true;
$view = Filesystem::getView();
if (!isset($this->deletedFiles[$normalized]) && $view instanceof View) {