Update encryption.php
This commit is contained in:
parent
735f6cc037
commit
1756562501
1 changed files with 8 additions and 8 deletions
|
@ -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;
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue