Update encryption.php

This commit is contained in:
jknockaert 2015-04-21 14:43:08 +02:00 committed by Bjoern Schiessle
parent 735f6cc037
commit 1756562501

View file

@ -229,6 +229,14 @@ class Encryption extends Wrapper {
$this->readOnly = true;
}
$sharePath = $this->fullPath;
if (!$this->storage->file_exists($this->internalPath)) {
$sharePath = dirname($sharePath);
}
$accessList = $this->file->getAccessList($sharePath);
$this->newHeader = $this->encryptionModule->begin($this->fullPath, $this->uid, $this->header, $accessList);
if (
$mode === 'w'
|| $mode === 'w+'
@ -243,14 +251,6 @@ class Encryption extends Wrapper {
parent::stream_read($this->util->getHeaderSize());
}
$sharePath = $this->fullPath;
if (!$this->storage->file_exists($this->internalPath)) {
$sharePath = dirname($sharePath);
}
$accessList = $this->file->getAccessList($sharePath);
$this->newHeader = $this->encryptionModule->begin($this->fullPath, $this->uid, $this->header, $accessList);
return true;
}