From eda51bf856b6321f9276d82f8064c59eb4a86c13 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Tue, 6 May 2014 03:51:42 +0000 Subject: [PATCH] Remove duplicate variable setting for `$link` in `wp_list_authors()`. See #27882. git-svn-id: https://develop.svn.wordpress.org/trunk@28265 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/author-template.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/wp-includes/author-template.php b/src/wp-includes/author-template.php index dd225c0b6d..b7361a0244 100644 --- a/src/wp-includes/author-template.php +++ b/src/wp-includes/author-template.php @@ -360,8 +360,6 @@ function wp_list_authors($args = '') { if ( !$posts && $hide_empty ) continue; - $link = ''; - if ( $show_fullname && $author->first_name && $author->last_name ) $name = "$author->first_name $author->last_name"; else