Skip cached credits if version number doesn't match. props duck_. fixes #20270.

git-svn-id: https://develop.svn.wordpress.org/trunk@20909 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2012-05-25 18:52:13 +00:00
parent c88445c82d
commit 9aef6b843b
1 changed files with 3 additions and 1 deletions

View File

@ -17,7 +17,9 @@ function wp_credits() {
$results = get_site_transient( 'wordpress_credits_' . $locale );
if ( ! is_array( $results ) ) {
if ( ! is_array( $results )
|| ( isset( $results['data']['version'] ) && strpos( $wp_version, $results['data']['version'] ) !== 0 )
) {
$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 ) )