php/elFinderVolumeDropbox.class.php 1 location
|
@@ 720-722 (lines=3) @@
|
| 717 |
|
return $this->setError(elFinder::ERROR_RM, $this->_path($path), elFinder::ERROR_FILE_NOT_FOUND); |
| 718 |
|
} |
| 719 |
|
|
| 720 |
|
if (!$force && !empty($stat['locked'])) { |
| 721 |
|
return $this->setError(elFinder::ERROR_LOCKED, $this->_path($path)); |
| 722 |
|
} |
| 723 |
|
|
| 724 |
|
if ($stat['mime'] == 'directory') { |
| 725 |
|
if (!$recursive && !$this->_rmdir($path)) { |
php/elFinderVolumeDriver.class.php 1 location
|
@@ 3392-3394 (lines=3) @@
|
| 3389 |
|
$this->rmTmb($stat); |
| 3390 |
|
$this->clearcache(); |
| 3391 |
|
|
| 3392 |
|
if (!$force && !empty($stat['locked'])) { |
| 3393 |
|
return $this->setError(elFinder::ERROR_LOCKED, $this->path($stat['hash'])); |
| 3394 |
|
} |
| 3395 |
|
|
| 3396 |
|
if ($stat['mime'] == 'directory' && empty($stat['thash'])) { |
| 3397 |
|
$ret = $this->delTree($this->convEncIn($path)); |