diff -r c7c34916027a -r 177826044cd9 wp/wp-admin/includes/credits.php --- a/wp/wp-admin/includes/credits.php Mon Oct 14 18:06:33 2019 +0200 +++ b/wp/wp-admin/includes/credits.php Mon Oct 14 18:28:13 2019 +0200 @@ -26,7 +26,7 @@ || false !== strpos( $wp_version, '-' ) || ( isset( $results['data']['version'] ) && strpos( $wp_version, $results['data']['version'] ) !== 0 ) ) { - $url = "http://api.wordpress.org/core/credits/1.1/?version={$wp_version}&locale={$locale}"; + $url = "http://api.wordpress.org/core/credits/1.1/?version={$wp_version}&locale={$locale}"; $options = array( 'user-agent' => 'WordPress/' . $wp_version . '; ' . home_url( '/' ) ); if ( wp_http_supports( array( 'ssl' ) ) ) { @@ -35,13 +35,15 @@ $response = wp_remote_get( $url, $options ); - if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) ) + if ( is_wp_error( $response ) || 200 != wp_remote_retrieve_response_code( $response ) ) { return false; + } $results = json_decode( wp_remote_retrieve_body( $response ), true ); - if ( ! is_array( $results ) ) + if ( ! is_array( $results ) ) { return false; + } set_site_transient( 'wordpress_credits_' . $locale, $results, DAY_IN_SECONDS ); }