php/elFinderVolumeFTP.class.php 1 location
|
@@ 1171-1174 (lines=4) @@
|
| 1168 |
|
} |
| 1169 |
|
|
| 1170 |
|
// check max files size |
| 1171 |
|
if ($this->options['maxArcFilesSize'] > 0 && $this->options['maxArcFilesSize'] < $this->archiveSize) { |
| 1172 |
|
$this->rmdirRecursive($dir); |
| 1173 |
|
return $this->setError(elFinder::ERROR_ARC_MAXSIZE); |
| 1174 |
|
} |
| 1175 |
|
|
| 1176 |
|
$extractTo = $this->extractToNewdir; // 'auto', ture or false |
| 1177 |
|
|
php/elFinderVolumeLocalFileSystem.class.php 1 location
|
@@ 1006-1009 (lines=4) @@
|
| 1003 |
|
} |
| 1004 |
|
|
| 1005 |
|
// check max files size |
| 1006 |
|
if ($this->options['maxArcFilesSize'] > 0 && $this->options['maxArcFilesSize'] < $this->archiveSize) { |
| 1007 |
|
$this->delTree($dir); |
| 1008 |
|
return $this->setError(elFinder::ERROR_ARC_MAXSIZE); |
| 1009 |
|
} |
| 1010 |
|
|
| 1011 |
|
$extractTo = $this->extractToNewdir; // 'auto', ture or false |
| 1012 |
|
|