Code Duplication    Length = 7-7 lines in 2 locations

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

@@ 534-540 (lines=7) @@
531
532
		$atts['showposts'] = intval( $atts['showposts'] );
533
534
		if ( $atts['order'] ) {
535
			$atts['order'] = urldecode( $atts['order'] );
536
			$atts['order'] = strtoupper( $atts['order'] );
537
			if ( 'DESC' != $atts['order'] ) {
538
				$atts['order'] = 'ASC';
539
			}
540
		}
541
542
		if ( $atts['orderby'] ) {
543
			$atts['orderby'] = urldecode( $atts['orderby'] );

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

@@ 461-467 (lines=7) @@
458
		$atts['showposts'] = intval( $atts['showposts'] );
459
460
461
		if ( $atts['order'] ) {
462
			$atts['order'] = urldecode( $atts['order'] );
463
			$atts['order'] = strtoupper( $atts['order'] );
464
			if ( 'DESC' != $atts['order'] ) {
465
				$atts['order'] = 'ASC';
466
			}
467
		}
468
469
		if ( $atts['orderby'] ) {
470
			$atts['orderby'] = urldecode( $atts['orderby'] );