Update encryption.php

remotes/origin/poc-doctrine-migrations
jknockaert 11 years ago committed by Bjoern Schiessle
parent 735f6cc037
commit 1756562501
  1. 16
      lib/private/files/stream/encryption.php

@ -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…
Cancel
Save