Resolving 9969 resubmitting to fix rebase issue.
This commit is contained in:
parent
4eb2b4e1b0
commit
222b9fd22b
|
@ -208,22 +208,7 @@ if (\OC_Util::runningOnWindows()) {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function fopen($path, $mode) {
|
public function fopen($path, $mode) {
|
||||||
if ($return = fopen($this->datadir . $path, $mode)) {
|
return fopen($this->datadir . $path, $mode);
|
||||||
switch ($mode) {
|
|
||||||
case 'r':
|
|
||||||
break;
|
|
||||||
case 'r+':
|
|
||||||
case 'w+':
|
|
||||||
case 'x+':
|
|
||||||
case 'a+':
|
|
||||||
break;
|
|
||||||
case 'w':
|
|
||||||
case 'x':
|
|
||||||
case 'a':
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return $return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function hash($type, $path, $raw = false) {
|
public function hash($type, $path, $raw = false) {
|
||||||
|
|
|
@ -245,26 +245,13 @@ class MappedLocal extends \OC\Files\Storage\Common {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function fopen($path, $mode) {
|
public function fopen($path, $mode) {
|
||||||
if ($return = fopen($this->buildPath($path), $mode)) {
|
return fopen($this->buildPath($path), $mode);
|
||||||
switch ($mode) {
|
|
||||||
case 'r':
|
|
||||||
break;
|
|
||||||
case 'r+':
|
|
||||||
case 'w+':
|
|
||||||
case 'x+':
|
|
||||||
case 'a+':
|
|
||||||
break;
|
|
||||||
case 'w':
|
|
||||||
case 'x':
|
|
||||||
case 'a':
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return $return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string $dir
|
* @param string $dir
|
||||||
|
* @param bool $isLogicPath
|
||||||
|
* @return bool
|
||||||
*/
|
*/
|
||||||
private function delTree($dir, $isLogicPath = true) {
|
private function delTree($dir, $isLogicPath = true) {
|
||||||
$dirRelative = $dir;
|
$dirRelative = $dir;
|
||||||
|
|
Loading…
Reference in New Issue