Code Duplication    Length = 9-10 lines in 2 locations

modules/contact-form/admin.php 2 locations

@@ 756-765 (lines=10) @@
753
		$status[$row['post_status']] = $row['post_count'];
754
	}
755
756
	if ( isset( $status['publish'] ) ) {
757
		$status_html .= '<li><a href="edit.php?post_type=feedback"';
758
		if ( $current_menu == 'messages' ) {
759
			$status_html .= ' class="current"';
760
		}
761
762
		$status_html .= '>' . __( 'Messages', 'jetpack' ) . ' <span class="count">';
763
		$status_html .= '(' . number_format( $status['publish'] ) . ')';
764
		$status_html .= '</span></a> |</li>';
765
	}
766
767
	if ( isset( $status['trash'] ) ) {
768
		$status_html .= '<li><a href="edit.php?post_status=trash&amp;post_type=feedback"';
@@ 780-788 (lines=9) @@
777
		$status_html .= '</li>';
778
	}
779
780
	if ( isset( $status['spam'] ) ) {
781
		$status_html .= '<li><a href="edit.php?post_status=spam&amp;post_type=feedback"';
782
		if ( $current_menu == 'spam' )
783
			$status_html .= ' class="current"';
784
785
		$status_html .= '>' . __( 'Spam', 'jetpack' ) . ' <span class="count">';
786
		$status_html .= '(' . number_format( $status['spam'] ) . ')';
787
		$status_html .= '</span></a></li>';
788
	}
789
790
	echo $status_html;
791
	exit;