Remove a dead variable, `$start`, from `wp_dashboard_recent_comments()`.

See #27882.



git-svn-id: https://develop.svn.wordpress.org/trunk@28263 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2014-05-06 03:34:22 +00:00
parent 4b6d5b10d4
commit 4c6f405ee7
1 changed files with 0 additions and 3 deletions

View File

@ -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 '<div id="latest-comments" class="activity-block">';
echo '<h4>' . __( 'Comments' ) . '</h4>';