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

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