Code Duplication    Length = 7-9 lines in 2 locations

php/elFinderVolumeDriver.class.php 2 locations

@@ 3569-3575 (lines=7) @@
3566
		
3567
			/* Resizing by biggest side */
3568
			if ($resizeByBiggerSide) {
3569
				if ($orig_w > $orig_h) {
3570
					$size_h = round($orig_h * $width / $orig_w);
3571
					$size_w = $width;
3572
				} else {
3573
					$size_w = round($orig_w * $height / $orig_h);
3574
					$size_h = $height;
3575
				}
3576
			} else {
3577
				if ($orig_w > $orig_h) {
3578
					$size_w = round($orig_w * $height / $orig_h);
@@ 3576-3584 (lines=9) @@
3573
					$size_w = round($orig_w * $height / $orig_h);
3574
					$size_h = $height;
3575
				}
3576
			} else {
3577
				if ($orig_w > $orig_h) {
3578
					$size_w = round($orig_w * $height / $orig_h);
3579
					$size_h = $height;
3580
				} else {
3581
					$size_h = round($orig_h * $width / $orig_w);
3582
					$size_w = $width;
3583
				}
3584
			}
3585
		}
3586
3587
		switch ($this->imgLib) {