Code Duplication    Length = 3-3 lines in 2 locations

modules/custom-post-types/portfolios.php 1 location

@@ 445-447 (lines=3) @@
442
			$atts['display_author'] = false;
443
		}
444
445
		if ( $atts['display_content'] && 'true' != $atts['display_content'] && 'full' != $atts['display_content'] ) {
446
			$atts['display_content'] = false;
447
		}
448
449
		if ( $atts['include_type'] ) {
450
			$atts['include_type'] = explode( ',', str_replace( ' ', '', $atts['include_type'] ) );

modules/custom-post-types/testimonial.php 1 location

@@ 540-542 (lines=3) @@
537
		), $atts, 'testimonial' );
538
539
		// A little sanitization
540
		if ( $atts['display_content'] && 'true' != $atts['display_content'] && 'full' != $atts['display_content'] ) {
541
			$atts['display_content'] = false;
542
		}
543
544
		if ( $atts['image'] && 'true' != $atts['image'] ) {
545
			$atts['image'] = false;