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

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