Make WordPress Core


Ignore:
Timestamp:
05/09/2012 03:55:59 PM (12 years ago)
Author:
ryan
Message:

Friendlier strings with links to the support forums when experiencing problems talking to api.wordpress.org. fixes #20605

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/theme.php

    r20733 r20752  
    284284        $request = wp_remote_post('http://api.wordpress.org/themes/info/1.0/', array( 'body' => array('action' => $action, 'request' => serialize($args))) );
    285285        if ( is_wp_error($request) ) {
    286             $res = new WP_Error('themes_api_failed', __('An Unexpected HTTP Error occurred during the API request.'), $request->get_error_message() );
     286            $res = new WP_Error('themes_api_failed', __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="http://wordpress.org/support/">support forums</a>.' ), $request->get_error_message() );
    287287        } else {
    288288            $res = maybe_unserialize( wp_remote_retrieve_body( $request ) );
    289289            if ( ! is_object( $res ) && ! is_array( $res ) )
    290                 $res = new WP_Error('themes_api_failed', __('An unknown error occurred during the API request.'), wp_remote_retrieve_body( $request ) );
     290                $res = new WP_Error('themes_api_failed', __( 'An unexpected error occurred. Something may be wrong with WordPress.org or this server&#8217;s configuration. If you continue to have problems, please try the <a href="http://wordpress.org/support/">support forums</a>.' ), wp_remote_retrieve_body( $request ) );
    291291        }
    292292    }
Note: See TracChangeset for help on using the changeset viewer.