Code Duplication    Length = 3-3 lines in 2 locations

engine/lib/filestore.php 1 location

@@ 239-241 (lines=3) @@
236
237
	// crop image first?
238
	$crop = true;
239
	if ($x1 == 0 && $y1 == 0 && $x2 == 0 && $y2 == 0) {
240
		$crop = false;
241
	}
242
243
	// how large a section of the image has been selected
244
	if ($crop) {

mod/tidypics/lib/resize.php 1 location

@@ 489-491 (lines=3) @@
486
function tp_im_calc_resize_params($orig_width, $orig_height, $new_width, $new_height, $square = FALSE, $x1 = 0, $y1 = 0, $x2 = 0, $y2 = 0) {
487
	// crop image first?
488
	$crop = TRUE;
489
	if ($x1 == 0 && $y1 == 0 && $x2 == 0 && $y2 == 0) {
490
		$crop = FALSE;
491
	}
492
493
	// how large a section of the image has been selected
494
	if ($crop) {