aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2016-04-29 12:42:37 +0200
committerVincent Petry <pvince81@owncloud.com>2016-05-20 09:33:59 +0200
commit63bbbf29f4b8fc49faf8aafd7ebf27a12e892a06 (patch)
tree16d385b238441e0b0c1ee1605e6899a0c2b099be /apps
parent2ef751b1ec28f7b5c7113af60ec8c9fa0ae1cf87 (diff)
downloadnextcloud-server-63bbbf29f4b8fc49faf8aafd7ebf27a12e892a06.tar.gz
nextcloud-server-63bbbf29f4b8fc49faf8aafd7ebf27a12e892a06.zip
Add wrapper for NFD encoding workaround
Diffstat (limited to 'apps')
-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) {