Code Duplication    Length = 9-10 lines in 2 locations

modules/contact-form/admin.php 2 locations

@@ 716-725 (lines=10) @@
713
		$status[ $row['post_status'] ] = $row['post_count'];
714
	}
715
716
	if ( isset( $status['publish'] ) ) {
717
		$status_html .= '<li><a href="edit.php?post_type=feedback"';
718
		if ( $current_menu == 'messages' ) {
719
			$status_html .= ' class="current"';
720
		}
721
722
		$status_html .= '>' . __( 'Messages', 'jetpack' ) . ' <span class="count">';
723
		$status_html .= '(' . number_format( $status['publish'] ) . ')';
724
		$status_html .= '</span></a> |</li>';
725
	}
726
727
	if ( isset( $status['trash'] ) ) {
728
		$status_html .= '<li><a href="edit.php?post_status=trash&amp;post_type=feedback"';
@@ 742-750 (lines=9) @@
739
		$status_html .= '</li>';
740
	}
741
742
	if ( isset( $status['spam'] ) ) {
743
		$status_html .= '<li><a href="edit.php?post_status=spam&amp;post_type=feedback"';
744
		if ( $current_menu == 'spam' ) {
745
			$status_html .= ' class="current"';
746
		}
747
748
		$status_html .= '>' . __( 'Spam', 'jetpack' ) . ' <span class="count">';
749
		$status_html .= '(' . number_format( $status['spam'] ) . ')';
750
		$status_html .= '</span></a></li>';
751
	}
752
753
	echo $status_html;