Code Duplication    Length = 7-9 lines in 2 locations

php/elFinderVolumeDriver.class.php 2 locations

@@ 3590-3596 (lines=7) @@
3587
		
3588
			/* Resizing by biggest side */
3589
			if ($resizeByBiggerSide) {
3590
				if ($orig_w > $orig_h) {
3591
					$size_h = round($orig_h * $width / $orig_w);
3592
					$size_w = $width;
3593
				} else {
3594
					$size_w = round($orig_w * $height / $orig_h);
3595
					$size_h = $height;
3596
				}
3597
			} else {
3598
				if ($orig_w > $orig_h) {
3599
					$size_w = round($orig_w * $height / $orig_h);
@@ 3597-3605 (lines=9) @@
3594
					$size_w = round($orig_w * $height / $orig_h);
3595
					$size_h = $height;
3596
				}
3597
			} else {
3598
				if ($orig_w > $orig_h) {
3599
					$size_w = round($orig_w * $height / $orig_h);
3600
					$size_h = $height;
3601
				} else {
3602
					$size_h = round($orig_h * $width / $orig_w);
3603
					$size_w = $width;
3604
				}
3605
			}
3606
		}
3607
3608
		switch ($this->imgLib) {