php/elFinderVolumeLocalFileSystem.class.php 1 location
|
@@ 902-905 (lines=4) @@
|
| 899 |
|
// find symlinks |
| 900 |
|
$symlinks = $this->_findSymlinks($dir); |
| 901 |
|
|
| 902 |
|
if ($symlinks) { |
| 903 |
|
$this->delTree($dir); |
| 904 |
|
return $this->setError(array_merge($this->error, array(elFinder::ERROR_ARC_SYMLINKS))); |
| 905 |
|
} |
| 906 |
|
|
| 907 |
|
// check max files size |
| 908 |
|
if ($this->options['maxArcFilesSize'] > 0 && $this->options['maxArcFilesSize'] < $this->archiveSize) { |
php/elFinderVolumeFTP.class.php 1 location
|
@@ 1160-1163 (lines=4) @@
|
| 1157 |
|
// find symlinks |
| 1158 |
|
$symlinks = $this->_findSymlinks($dir); |
| 1159 |
|
|
| 1160 |
|
if ($symlinks) { |
| 1161 |
|
$this->rmdirRecursive($dir); |
| 1162 |
|
return $this->setError(array_merge($this->error, array(elFinder::ERROR_ARC_SYMLINKS))); |
| 1163 |
|
} |
| 1164 |
|
|
| 1165 |
|
// check max files size |
| 1166 |
|
if ($this->options['maxArcFilesSize'] > 0 && $this->options['maxArcFilesSize'] < $this->archiveSize) { |