Code Duplication    Length = 5-5 lines in 3 locations

includes/acf/fields/relationship.php 3 locations

@@ 434-438 (lines=5) @@
431
			}
432
			
433
			// post_type
434
			if( $width['post_type'] == 0 ) {
435
			
436
				$width['taxonomy'] = ( $width['taxonomy'] == 0 ) ? 0 : 50;
437
				
438
			}
439
			
440
			
441
			// taxonomy
@@ 442-446 (lines=5) @@
439
			
440
			
441
			// taxonomy
442
			if( $width['taxonomy'] == 0 ) {
443
			
444
				$width['post_type'] = ( $width['post_type'] == 0 ) ? 0 : 50;
445
				
446
			}
447
			
448
			
449
			// search
@@ 450-454 (lines=5) @@
447
			
448
			
449
			// search
450
			if( $width['post_type'] == 0 && $width['taxonomy'] == 0 ) {
451
			
452
				$width['search'] = ( $width['search'] == 0 ) ? 0 : 100;
453
				
454
			}
455
		}
456
		
457