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

@@ 911-914 (lines=4) @@
908
			}
909
910
			// check max files size
911
			if ($this->options['maxArcFilesSize'] > 0 && $this->options['maxArcFilesSize'] < $this->archiveSize) {
912
				$this->delTree($dir);
913
				return $this->setError(elFinder::ERROR_ARC_MAXSIZE);
914
			}
915
			
916
			$extractTo = $this->extractToNewdir; // 'auto', ture or false
917