From 49923580bda3d5140ab63e686584c37da9c12cd4 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Mon, 31 Aug 2015 20:30:32 +0000 Subject: [PATCH] `WP_Widget_Pages::widget()` has no reason to set `$comment` and `$comments` globals. See #11566. git-svn-id: https://develop.svn.wordpress.org/trunk@33824 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/default-widgets.php | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/wp-includes/default-widgets.php b/src/wp-includes/default-widgets.php index 482ee81586..0478caf79c 100644 --- a/src/wp-includes/default-widgets.php +++ b/src/wp-includes/default-widgets.php @@ -964,15 +964,10 @@ class WP_Widget_Recent_Comments extends WP_Widget { } /** - * @global array $comments - * @global object $comment - * * @param array $args * @param array $instance */ public function widget( $args, $instance ) { - global $comments, $comment; - $cache = array(); if ( ! $this->is_preview() ) { $cache = wp_cache_get('widget_recent_comments', 'widget'); @@ -1026,11 +1021,11 @@ class WP_Widget_Recent_Comments extends WP_Widget { $post_ids = array_unique( wp_list_pluck( $comments, 'comment_post_ID' ) ); _prime_post_caches( $post_ids, strpos( get_option( 'permalink_structure' ), '%category%' ), false ); - foreach ( (array) $comments as $comment) { + foreach ( (array) $comments as $comment ) { $output .= '
  • '; /* translators: comments widget: 1: comment author, 2: post link */ $output .= sprintf( _x( '%1$s on %2$s', 'widgets' ), - '' . get_comment_author_link() . '', + '' . get_comment_author_link( $comment->comment_ID ) . '', '' . get_the_title( $comment->comment_post_ID ) . '' ); $output .= '
  • ';