Code Duplication    Length = 5-5 lines in 2 locations

src/wp-includes/comment.php 2 locations

@@ 391-395 (lines=5) @@
388
				$comment_count['spam'] = $row['total'];
389
				$comment_count['total_comments'] += $row['total'];
390
				break;
391
			case '1':
392
				$comment_count['approved'] = $row['total'];
393
				$comment_count['total_comments'] += $row['total'];
394
				$comment_count['all'] += $row['total'];
395
				break;
396
			case '0':
397
				$comment_count['awaiting_moderation'] = $row['total'];
398
				$comment_count['total_comments'] += $row['total'];
@@ 396-400 (lines=5) @@
393
				$comment_count['total_comments'] += $row['total'];
394
				$comment_count['all'] += $row['total'];
395
				break;
396
			case '0':
397
				$comment_count['awaiting_moderation'] = $row['total'];
398
				$comment_count['total_comments'] += $row['total'];
399
				$comment_count['all'] += $row['total'];
400
				break;
401
			default:
402
				break;
403
		}