Index: src/wp-admin/network/site-info.php
===================================================================
--- src/wp-admin/network/site-info.php	(revision 32602)
+++ src/wp-admin/network/site-info.php	(working copy)
@@ -65,16 +65,16 @@
 	}
 	update_blog_details( $id, $blog_data );
 
-	if ( isset( $_POST['update_home_url'] ) && $_POST['update_home_url'] == 'update' ) {
-		$new_details = get_blog_details( $id, false );
-		$blog_address = esc_url_raw( $new_details->domain . $new_details->path );
-		if ( get_option( 'siteurl' ) != $blog_address ) {
-			update_option( 'siteurl', $blog_address );
-		}
-		if ( get_option( 'home' ) != $blog_address ) {
-			update_option( 'home', $blog_address );
-		}
+	// Maybe update home and siteurl options
+	$updated_details = get_blog_details( $id, false );
+	$old_address = esc_url_raw( $existing_details->domain . $existing_details->path );
+	$new_address = esc_url_raw( $updated_details->domain . $updated_details->path );
+	if ( get_option( 'home' ) === untrailingslashit( $old_address ) ) {
+		update_option( 'home', $new_address );
 	}
+	if ( get_option( 'siteurl' ) === untrailingslashit( $old_address ) ){
+		update_option( 'siteurl', $new_address );
+	}
 
 	restore_current_blog();
 	wp_redirect( add_query_arg( array( 'update' => 'updated', 'id' => $id ), 'site-info.php') );
@@ -134,20 +134,12 @@
 		</tr>
 		<tr class="form-field form-required">
 			<?php if ( $is_main_site ) { ?>
-			<th scope="row"><?php _e( 'Path' ) ?></th>
-			<td><code><?php echo esc_attr( $details->path ) ?></code></td>
-			<?php
-			} else {
-				switch_to_blog( $id );
-			?>
-			<th scope="row"><label for="path"><?php _e( 'Path' ) ?></label></th>
-			<td>
-				<input name="blog[path]" type="text" id="path" value="<?php echo esc_attr( $details->path ) ?>" /><br />
-				<input type="checkbox" name="update_home_url" id="update_home_url" value="update" <?php if ( get_option( 'siteurl' ) == untrailingslashit( get_blogaddress_by_id ($id ) ) || get_option( 'home' ) == untrailingslashit( get_blogaddress_by_id( $id ) ) ) echo 'checked="checked"'; ?> /> <label for="update_home_url"><?php _e( 'Update <code>siteurl</code> and <code>home</code> as well.' ); ?></label>
-			</td>
-			<?php
-				restore_current_blog();
-			} ?>
+				<th scope="row"><?php _e( 'Path' ) ?></th>
+				<td><code><?php echo esc_attr( $details->path ) ?></code></td>
+			<?php } else { ?>
+				<th scope="row"><label for="path"><?php _e( 'Path' ) ?></label></th>
+				<td><input name="blog[path]" type="text" id="path" value="<?php echo esc_attr( $details->path ) ?>" /></td>
+			<?php } ?>
 		</tr>
 		<tr class="form-field">
 			<th scope="row"><label for="blog_registered"><?php _ex( 'Registered', 'site' ) ?></label></th>
