diff options
author | Björn Schießle <bjoern@schiessle.org> | 2015-06-23 14:30:21 +0200 |
---|---|---|
committer | Björn Schießle <bjoern@schiessle.org> | 2015-06-23 14:30:21 +0200 |
commit | cce841c665a64aa161b023af59ac2136aaf424bf (patch) | |
tree | 246b877431bc46e561a89176eed978e174dd8b99 /lib | |
parent | 4b5324341c152ba14b817c13979a35e15502e39b (diff) | |
parent | 95602d4069a1eb9a45e1d08edeecc0d5b90e01ca (diff) | |
download | nextcloud-server-cce841c665a64aa161b023af59ac2136aaf424bf.tar.gz nextcloud-server-cce841c665a64aa161b023af59ac2136aaf424bf.zip |
Merge pull request #17045 from owncloud/enc_improvements
encryption improvements
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/files/storage/wrapper/encryption.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/private/files/storage/wrapper/encryption.php b/lib/private/files/storage/wrapper/encryption.php index 056f823c18b..8d1f80c53c0 100644 --- a/lib/private/files/storage/wrapper/encryption.php +++ b/lib/private/files/storage/wrapper/encryption.php @@ -349,7 +349,8 @@ class Encryption extends Wrapper { if ($this->util->isExcluded($fullPath) === false) { $size = $unencryptedSize = 0; - $targetExists = $this->file_exists($path); + $realFile = $this->util->stripPartialFileExtension($path); + $targetExists = $this->file_exists($realFile); $targetIsEncrypted = false; if ($targetExists) { // in case the file exists we require the explicit module as @@ -605,8 +606,9 @@ class Encryption extends Wrapper { */ protected function getHeader($path) { $header = ''; - if ($this->storage->file_exists($path)) { - $handle = $this->storage->fopen($path, 'r'); + $realFile = $this->util->stripPartialFileExtension($path); + if ($this->storage->file_exists($realFile)) { + $handle = $this->storage->fopen($realFile, 'r'); $firstBlock = fread($handle, $this->util->getHeaderSize()); fclose($handle); if (substr($firstBlock, 0, strlen(Util::HEADER_START)) === Util::HEADER_START) { |