From 185ae53008569273871e499a6b7fd1f8049c351b Mon Sep 17 00:00:00 2001 From: nacin Date: Wed, 26 May 2010 02:59:08 +0000 Subject: [PATCH] Fix typo in [14926] git-svn-id: http://svn.automattic.com/wordpress/trunk@14927 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/ms-upgrade-network.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/ms-upgrade-network.php b/wp-admin/ms-upgrade-network.php index 499dec8f8..cfa72c990 100644 --- a/wp-admin/ms-upgrade-network.php +++ b/wp-admin/ms-upgrade-network.php @@ -47,7 +47,7 @@ switch ( $action ) { echo "
  • $siteurl
  • "; $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( sprintf( __( 'Warning! Problem updating %$1s. Your server may not be able to connect to sites running on it. Error message: %2$s' ), $siteurl, $response->get_error_message() ) ); + wp_die( sprintf( __( 'Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s' ), $siteurl, $response->get_error_message() ) ); do_action( 'after_mu_upgrade', $response ); do_action( 'wpmu_upgrade_site', $details[ 'blog_id' ] ); }