Code Duplication    Length = 9-10 lines in 2 locations

modules/contact-form/admin.php 2 locations

@@ 750-759 (lines=10) @@
747
		$status[ $row['post_status'] ] = $row['post_count'];
748
	}
749
750
	if ( isset( $status['publish'] ) ) {
751
		$status_html .= '<li><a href="edit.php?post_type=feedback"';
752
		if ( $current_menu == 'messages' ) {
753
			$status_html .= ' class="current"';
754
		}
755
756
		$status_html .= '>' . __( 'Messages', 'jetpack' ) . ' <span class="count">';
757
		$status_html .= '(' . number_format( $status['publish'] ) . ')';
758
		$status_html .= '</span></a> |</li>';
759
	}
760
761
	if ( isset( $status['trash'] ) ) {
762
		$status_html .= '<li><a href="edit.php?post_status=trash&amp;post_type=feedback"';
@@ 776-784 (lines=9) @@
773
		$status_html .= '</li>';
774
	}
775
776
	if ( isset( $status['spam'] ) ) {
777
		$status_html .= '<li><a href="edit.php?post_status=spam&amp;post_type=feedback"';
778
		if ( $current_menu == 'spam' ) {
779
			$status_html .= ' class="current"';
780
		}
781
782
		$status_html .= '>' . __( 'Spam', 'jetpack' ) . ' <span class="count">';
783
		$status_html .= '(' . number_format( $status['spam'] ) . ')';
784
		$status_html .= '</span></a></li>';
785
	}
786
787
	echo $status_html;