Code Duplication    Length = 7-7 lines in 2 locations

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'] );

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

@@ 605-611 (lines=7) @@
602
		$atts['showposts'] = intval( $atts['showposts'] );
603
604
605
		if ( $atts['order'] ) {
606
			$atts['order'] = urldecode( $atts['order'] );
607
			$atts['order'] = strtoupper( $atts['order'] );
608
			if ( 'DESC' != $atts['order'] ) {
609
				$atts['order'] = 'ASC';
610
			}
611
		}
612
613
		if ( $atts['orderby'] ) {
614
			$atts['orderby'] = urldecode( $atts['orderby'] );