Code Duplication    Length = 5-5 lines in 2 locations

wp-includes/comment.php 2 locations

@@ 375-379 (lines=5) @@
372
				$comment_count['spam'] = $row['total'];
373
				$comment_count['total_comments'] += $row['total'];
374
				break;
375
			case '1':
376
				$comment_count['approved'] = $row['total'];
377
				$comment_count['total_comments'] += $row['total'];
378
				$comment_count['all'] += $row['total'];
379
				break;
380
			case '0':
381
				$comment_count['awaiting_moderation'] = $row['total'];
382
				$comment_count['total_comments'] += $row['total'];
@@ 380-384 (lines=5) @@
377
				$comment_count['total_comments'] += $row['total'];
378
				$comment_count['all'] += $row['total'];
379
				break;
380
			case '0':
381
				$comment_count['awaiting_moderation'] = $row['total'];
382
				$comment_count['total_comments'] += $row['total'];
383
				$comment_count['all'] += $row['total'];
384
				break;
385
			default:
386
				break;
387
		}