From 21379dcde047aa0d8fc4b47cd4b7e7ab6d185bb2 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Tue, 6 May 2014 03:35:14 +0000 Subject: [PATCH] Remove a dead variable, `$start`, from `wp_dashboard_recent_comments()`. See #27882. Built from https://develop.svn.wordpress.org/trunk@28263 git-svn-id: http://core.svn.wordpress.org/trunk@28091 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/dashboard.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php index fb50197e17..27384c9d6a 100644 --- a/wp-admin/includes/dashboard.php +++ b/wp-admin/includes/dashboard.php @@ -765,7 +765,6 @@ function wp_dashboard_recent_comments( $total_items = 5 ) { // Select all comment types and filter out spam later for better query performance. $comments = array(); - $start = 0; $comments_query = array( 'number' => $total_items * 5, @@ -786,8 +785,6 @@ function wp_dashboard_recent_comments( $total_items = 5 ) { $comments_query['number'] = $total_items * 10; } - - if ( $comments ) { echo '
'; echo '

' . __( 'Comments' ) . '

';