Code Duplication    Length = 7-7 lines in 2 locations

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

@@ 540-546 (lines=7) @@
537
		$atts['showposts'] = intval( $atts['showposts'] );
538
539
540
		if ( $atts['order'] ) {
541
			$atts['order'] = urldecode( $atts['order'] );
542
			$atts['order'] = strtoupper( $atts['order'] );
543
			if ( 'DESC' != $atts['order'] ) {
544
				$atts['order'] = 'ASC';
545
			}
546
		}
547
548
		if ( $atts['orderby'] ) {
549
			$atts['orderby'] = urldecode( $atts['orderby'] );

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

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