Code Duplication    Length = 7-9 lines in 2 locations

php/elFinderVolumeDriver.class.php 2 locations

@@ 3748-3754 (lines=7) @@
3745
		
3746
			/* Resizing by biggest side */
3747
			if ($resizeByBiggerSide) {
3748
				if ($orig_w > $orig_h) {
3749
					$size_h = round($orig_h * $width / $orig_w);
3750
					$size_w = $width;
3751
				} else {
3752
					$size_w = round($orig_w * $height / $orig_h);
3753
					$size_h = $height;
3754
				}
3755
			} else {
3756
				if ($orig_w > $orig_h) {
3757
					$size_w = round($orig_w * $height / $orig_h);
@@ 3755-3763 (lines=9) @@
3752
					$size_w = round($orig_w * $height / $orig_h);
3753
					$size_h = $height;
3754
				}
3755
			} else {
3756
				if ($orig_w > $orig_h) {
3757
					$size_w = round($orig_w * $height / $orig_h);
3758
					$size_h = $height;
3759
				} else {
3760
					$size_h = round($orig_h * $width / $orig_w);
3761
					$size_w = $width;
3762
				}
3763
			}
3764
		}
3765
3766
		switch ($this->imgLib) {