mirror of
https://github.com/nextcloud/server.git
synced 2026-03-06 07:21:11 -05:00
Put back the variable but make sure it is properly declared
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
parent
26033653a8
commit
3bcb4fc024
1 changed files with 6 additions and 1 deletions
|
|
@ -88,7 +88,7 @@ class SharedStorage extends \OC\Files\Storage\Wrapper\Jail implements ISharedSto
|
|||
/** @var IStorage */
|
||||
private $nonMaskedStorage;
|
||||
|
||||
private $options;
|
||||
private array $mountOptions = [];
|
||||
|
||||
/** @var boolean */
|
||||
private $sharingDisabledForUser;
|
||||
|
|
@ -551,7 +551,12 @@ class SharedStorage extends \OC\Files\Storage\Wrapper\Jail implements ISharedSto
|
|||
return parent::file_put_contents($path, $data);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function setMountOptions(array $options) {
|
||||
/* Note: This value is never read */
|
||||
$this->mountOptions = $options;
|
||||
}
|
||||
|
||||
public function getUnjailedPath($path) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue