diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-06-25 16:41:24 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-07-05 15:59:57 +0200 |
commit | af2cd6f5418078e813e4b3cad27cc859273592de (patch) | |
tree | c86265ddfd699260eb4726970aa2bf702d8d5568 | |
parent | 3043dbfb95b7ea84d2d3478aef7cc3c28c8d4b85 (diff) | |
download | nextcloud-server-af2cd6f5418078e813e4b3cad27cc859273592de.tar.gz nextcloud-server-af2cd6f5418078e813e4b3cad27cc859273592de.zip |
always return normalized path
-rw-r--r-- | apps/files_encryption/lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 7228d2a6479..00b3192db8f 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -1193,7 +1193,7 @@ class Util { return array( $fileOwnerUid, - $filename + \OC_Filesystem::normalizePath($filename) ); } |