php/elFinderVolumeLocalFileSystem.class.php 1 location
|
@@ 908-911 (lines=4) @@
|
| 905 |
|
} |
| 906 |
|
|
| 907 |
|
// check max files size |
| 908 |
|
if ($this->options['maxArcFilesSize'] > 0 && $this->options['maxArcFilesSize'] < $this->archiveSize) { |
| 909 |
|
$this->delTree($dir); |
| 910 |
|
return $this->setError(elFinder::ERROR_ARC_MAXSIZE); |
| 911 |
|
} |
| 912 |
|
|
| 913 |
|
$extractTo = $this->extractToNewdir; // 'auto', ture or false |
| 914 |
|
|
php/elFinderVolumeFTP.class.php 1 location
|
@@ 1166-1169 (lines=4) @@
|
| 1163 |
|
} |
| 1164 |
|
|
| 1165 |
|
// check max files size |
| 1166 |
|
if ($this->options['maxArcFilesSize'] > 0 && $this->options['maxArcFilesSize'] < $this->archiveSize) { |
| 1167 |
|
$this->rmdirRecursive($dir); |
| 1168 |
|
return $this->setError(elFinder::ERROR_ARC_MAXSIZE); |
| 1169 |
|
} |
| 1170 |
|
|
| 1171 |
|
$extractTo = $this->extractToNewdir; // 'auto', ture or false |
| 1172 |
|
|