Code Duplication    Length = 7-9 lines in 2 locations

php/elFinderVolumeDriver.class.php 2 locations

@@ 3541-3547 (lines=7) @@
3538
		
3539
			/* Resizing by biggest side */
3540
			if ($resizeByBiggerSide) {
3541
				if ($orig_w > $orig_h) {
3542
					$size_h = round($orig_h * $width / $orig_w);
3543
					$size_w = $width;
3544
				} else {
3545
					$size_w = round($orig_w * $height / $orig_h);
3546
					$size_h = $height;
3547
				}
3548
			} else {
3549
				if ($orig_w > $orig_h) {
3550
					$size_w = round($orig_w * $height / $orig_h);
@@ 3548-3556 (lines=9) @@
3545
					$size_w = round($orig_w * $height / $orig_h);
3546
					$size_h = $height;
3547
				}
3548
			} else {
3549
				if ($orig_w > $orig_h) {
3550
					$size_w = round($orig_w * $height / $orig_h);
3551
					$size_h = $height;
3552
				} else {
3553
					$size_h = round($orig_h * $width / $orig_w);
3554
					$size_w = $width;
3555
				}
3556
			}
3557
		}
3558
3559
		switch ($this->imgLib) {