diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2013-11-12 18:48:31 +0100 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2013-11-12 18:48:31 +0100 |
commit | dd0ebcede2ae163fda19996311cd643631ca3637 (patch) | |
tree | acf11173a896bbdaede0ad1c3b3e16d06b6d8346 /apps/files_encryption | |
parent | e2fb8d7128d0022406d3cc22cda0439acb599f09 (diff) | |
download | nextcloud-server-dd0ebcede2ae163fda19996311cd643631ca3637.tar.gz nextcloud-server-dd0ebcede2ae163fda19996311cd643631ca3637.zip |
fixPartialFilePath() is now stripPartialFileExtension()
Diffstat (limited to 'apps/files_encryption')
-rw-r--r-- | apps/files_encryption/lib/stream.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index 6e2b2ceb27b..069d9145a28 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -531,7 +531,7 @@ class Stream { // we need to update the file info for the real file, not for the // part file. - $path = Helper::fixPartialFilePath($this->rawPath); + $path = Helper::stripPartialFileExtension($this->rawPath); // get file info $fileInfo = $this->rootView->getFileInfo($path); |