Code Duplication    Length = 21-21 lines in 2 locations

includes/acf/fields/file.php 1 location

@@ 365-385 (lines=21) @@
362
	*  @return	$value - the modified value
363
	*/
364
	
365
	function update_value( $value, $post_id, $field ) {
366
		
367
		// array?
368
		if( is_array($value) && isset($value['ID']) ) {
369
		
370
			return $value['ID'];	
371
			
372
		}
373
		
374
		
375
		// object?
376
		if( is_object($value) && isset($value->ID) ) {
377
		
378
			return $value->ID;
379
			
380
		}
381
		
382
		
383
		// return
384
		return $value;
385
	}
386
	
387
	
388
	/*

includes/acf/fields/image.php 1 location

@@ 493-513 (lines=21) @@
490
	*  @return	$value - the modified value
491
	*/
492
	
493
	function update_value( $value, $post_id, $field ) {
494
		
495
		// array?
496
		if( is_array($value) && isset($value['ID']) ) {
497
		
498
			return $value['ID'];	
499
			
500
		}
501
		
502
		
503
		// object?
504
		if( is_object($value) && isset($value->ID) ) {
505
		
506
			return $value->ID;
507
			
508
		}
509
		
510
		
511
		// return
512
		return $value;
513
	}
514
	
515
	
516
}