Also check if the file itself is updatable

This commit is contained in:
Robin Appelman 2014-08-25 14:28:35 +02:00 committed by Lukas Reschke
parent d25a9a118f
commit 2f22e67570
3 changed files with 4 additions and 4 deletions

View File

@ -21,7 +21,7 @@ abstract class StreamWrapper extends Common {
}
public function rmdir($path) {
if ($this->file_exists($path) and $this->isDeletable($path)) {
if ($this->file_exists($path) && $this->isDeletable($path)) {
$dh = $this->opendir($path);
while (($file = readdir($dh)) !== false) {
if ($this->is_dir($path . '/' . $file)) {

View File

@ -187,7 +187,7 @@ class Swift extends \OC\Files\Storage\Common {
public function rmdir($path) {
$path = $this->normalizePath($path);
if (!$this->is_dir($path) or !$this->isDeletable($path)) {
if (!$this->is_dir($path) || !$this->isDeletable($path)) {
return false;
}

View File

@ -95,11 +95,11 @@ abstract class Common implements \OC\Files\Storage\Storage {
}
public function isDeletable($path) {
if ($path === '' or $path === '/') {
if ($path === '' || $path === '/') {
return false;
}
$parent = dirname($path);
return $this->isUpdatable($parent);
return $this->isUpdatable($parent) and $this->isUpdatable($path);
}
public function isSharable($path) {