Code Duplication    Length = 7-7 lines in 2 locations

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

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

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

@@ 550-556 (lines=7) @@
547
548
		$atts['showposts'] = intval( $atts['showposts'] );
549
550
		if ( $atts['order'] ) {
551
			$atts['order'] = urldecode( $atts['order'] );
552
			$atts['order'] = strtoupper( $atts['order'] );
553
			if ( 'DESC' != $atts['order'] ) {
554
				$atts['order'] = 'ASC';
555
			}
556
		}
557
558
		if ( $atts['orderby'] ) {
559
			$atts['orderby'] = urldecode( $atts['orderby'] );