Code Duplication    Length = 4-4 lines in 2 locations

php/elFinderVolumeFTP.class.php 1 location

@@ 1153-1156 (lines=4) @@
1150
		}
1151
1152
		// check max files size
1153
		if ($this->options['maxArcFilesSize'] > 0 && $this->options['maxArcFilesSize'] < $this->archiveSize) {
1154
			$this->rmdirRecursive($dir);
1155
			return $this->setError(elFinder::ERROR_ARC_MAXSIZE);
1156
		}
1157
		
1158
		$extractTo = $this->extractToNewdir; // 'auto', ture or false
1159
		

php/elFinderVolumeLocalFileSystem.class.php 1 location

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