Code Duplication    Length = 7-9 lines in 2 locations

php/elFinderVolumeDriver.class.php 2 locations

@@ 3551-3557 (lines=7) @@
3548
		
3549
			/* Resizing by biggest side */
3550
			if ($resizeByBiggerSide) {
3551
				if ($orig_w > $orig_h) {
3552
					$size_h = round($orig_h * $width / $orig_w);
3553
					$size_w = $width;
3554
				} else {
3555
					$size_w = round($orig_w * $height / $orig_h);
3556
					$size_h = $height;
3557
				}
3558
			} else {
3559
				if ($orig_w > $orig_h) {
3560
					$size_w = round($orig_w * $height / $orig_h);
@@ 3558-3566 (lines=9) @@
3555
					$size_w = round($orig_w * $height / $orig_h);
3556
					$size_h = $height;
3557
				}
3558
			} else {
3559
				if ($orig_w > $orig_h) {
3560
					$size_w = round($orig_w * $height / $orig_h);
3561
					$size_h = $height;
3562
				} else {
3563
					$size_h = round($orig_h * $width / $orig_w);
3564
					$size_w = $width;
3565
				}
3566
			}
3567
		}
3568
3569
		switch ($this->imgLib) {