Code Duplication    Length = 4-4 lines in 2 locations

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
		

php/elFinderVolumeLocalFileSystem.class.php 1 location

@@ 918-921 (lines=4) @@
915
			}
916
917
			// check max files size
918
			if ($this->options['maxArcFilesSize'] > 0 && $this->options['maxArcFilesSize'] < $this->archiveSize) {
919
				$this->delTree($dir);
920
				return $this->setError(elFinder::ERROR_ARC_MAXSIZE);
921
			}
922
			
923
			$extractTo = $this->extractToNewdir; // 'auto', ture or false
924