Missing translated string in ms-upgrade-network. props dd32.

git-svn-id: https://develop.svn.wordpress.org/trunk@14926 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-05-26 02:57:40 +00:00
parent 2b72813903
commit 92d12fb5d5
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ switch ( $action ) {
echo "<li>$siteurl</li>";
$response = wp_remote_get( trailingslashit( $siteurl ) . "wp-admin/upgrade.php?step=upgrade_db", array( 'timeout' => 120, 'httpversion' => '1.1' ) );
if ( is_wp_error( $response ) )
wp_die( "<strong>Warning!</strong> Problem updating {$siteurl}. Your server may not be able to connect to sites running on it.<br /> Error message: <em>" . $response->get_error_message() ."</em>" );
wp_die( sprintf( __( 'Warning! Problem updating %$1s. Your server may not be able to connect to sites running on it. Error message: <em>%2$s</em>' ), $siteurl, $response->get_error_message() ) );
do_action( 'after_mu_upgrade', $response );
do_action( 'wpmu_upgrade_site', $details[ 'blog_id' ] );
}