php/elFinderVolumeFTP.class.php 1 location
|
@@ 1165-1168 (lines=4) @@
|
| 1162 |
|
// find symlinks |
| 1163 |
|
$symlinks = $this->_findSymlinks($dir); |
| 1164 |
|
|
| 1165 |
|
if ($symlinks) { |
| 1166 |
|
$this->rmdirRecursive($dir); |
| 1167 |
|
return $this->setError(array_merge($this->error, array(elFinder::ERROR_ARC_SYMLINKS))); |
| 1168 |
|
} |
| 1169 |
|
|
| 1170 |
|
// check max files size |
| 1171 |
|
if ($this->options['maxArcFilesSize'] > 0 && $this->options['maxArcFilesSize'] < $this->archiveSize) { |
php/elFinderVolumeLocalFileSystem.class.php 1 location
|
@@ 1000-1003 (lines=4) @@
|
| 997 |
|
// find symlinks |
| 998 |
|
$symlinks = $this->_findSymlinks($dir); |
| 999 |
|
|
| 1000 |
|
if ($symlinks) { |
| 1001 |
|
$this->delTree($dir); |
| 1002 |
|
return $this->setError(array_merge($this->error, array(elFinder::ERROR_ARC_SYMLINKS))); |
| 1003 |
|
} |
| 1004 |
|
|
| 1005 |
|
// check max files size |
| 1006 |
|
if ($this->options['maxArcFilesSize'] > 0 && $this->options['maxArcFilesSize'] < $this->archiveSize) { |