Fix inverse logic in [17946].

git-svn-id: http://svn.automattic.com/wordpress/trunk@17948 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2011-05-17 17:36:58 +00:00
parent dcb9985b13
commit dba8ade461
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ function wp_credits() {
$results = get_site_transient( 'wordpress_credits' );
if ( !is_array( $results ) || isset( $results['people'] ) ) {
if ( !is_array( $results ) || !isset( $results['people'] ) ) {
$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 ) )