From 21abd80ac550dbac75b8eeafb509aca639a46c22 Mon Sep 17 00:00:00 2001 From: nacin Date: Mon, 6 Jun 2011 06:46:11 +0000 Subject: [PATCH] Oops. Credits API version remain unchanged. see #17518. git-svn-id: http://svn.automattic.com/wordpress/trunk@18163 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 9e5d983e5..d7d892180 100644 --- a/wp-admin/credits.php +++ b/wp-admin/credits.php @@ -51,7 +51,7 @@ function wp_credits() { $results = get_site_transient( 'wordpress_credits_' . $locale ); if ( ! is_array( $results ) ) { - $response = wp_remote_get( "http://api.wordpress.org/core/credits/1.1/?version=$wp_version&locale=$locale" ); + $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 ) ) return false;