From 217ce050a9fa630e4dd85b68b2dd60eb642fbf0c Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 13 May 2011 02:08:35 +0000 Subject: [PATCH] Use correct variable, see #17384. git-svn-id: https://develop.svn.wordpress.org/trunk@17911 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/credits.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/credits.php b/wp-admin/credits.php index dcb9d23ce2..ef2944ffa5 100644 --- a/wp-admin/credits.php +++ b/wp-admin/credits.php @@ -29,7 +29,7 @@ function wp_credits() { $results = get_site_transient( 'wordpress_credits' ); - if ( false === $people ) { + if ( false === $results ) { $response = wp_remote_get( "http://api.wordpress.org/core/credits/1.0/?version=$wp_version&locale=$locale" ); if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) )