Code Duplication    Length = 7-9 lines in 2 locations

php/elFinderVolumeDriver.class.php 2 locations

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