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

git-svn-id: http://svn.automattic.com/wordpress/trunk@14926 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-05-26 02:57:40 +00:00
parent 75354faa28
commit 262545acd5
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' ] );
}