Code Duplication    Length = 7-9 lines in 2 locations

php/elFinderVolumeDriver.class.php 2 locations

@@ 3710-3716 (lines=7) @@
3707
		
3708
			/* Resizing by biggest side */
3709
			if ($resizeByBiggerSide) {
3710
				if ($orig_w > $orig_h) {
3711
					$size_h = round($orig_h * $width / $orig_w);
3712
					$size_w = $width;
3713
				} else {
3714
					$size_w = round($orig_w * $height / $orig_h);
3715
					$size_h = $height;
3716
				}
3717
			} else {
3718
				if ($orig_w > $orig_h) {
3719
					$size_w = round($orig_w * $height / $orig_h);
@@ 3717-3725 (lines=9) @@
3714
					$size_w = round($orig_w * $height / $orig_h);
3715
					$size_h = $height;
3716
				}
3717
			} else {
3718
				if ($orig_w > $orig_h) {
3719
					$size_w = round($orig_w * $height / $orig_h);
3720
					$size_h = $height;
3721
				} else {
3722
					$size_h = round($orig_h * $width / $orig_w);
3723
					$size_w = $width;
3724
				}
3725
			}
3726
		}
3727
3728
		switch ($this->imgLib) {