Index: wp-admin/ms-edit.php
===================================================================
--- wp-admin/ms-edit.php	(revision 15453)
+++ wp-admin/ms-edit.php	(working copy)
@@ -143,7 +143,7 @@
 			wp_die( __( 'You do not have permission to access this page.' ) );
 
 		if ( is_array( $_POST['blog'] ) == false )
-			wp_die(  __( 'Can&#8217;t create an empty site.' ) );
+			wp_die( __( 'Can&#8217;t create an empty site.' ) );
 		$blog = $_POST['blog'];
 		$domain = '';
 		if ( ! preg_match( '/(--)/', $blog['domain'] ) && preg_match( '|^([a-zA-Z0-9-])+$|', $blog['domain'] ) )
@@ -193,7 +193,7 @@
 			if ( !is_super_admin( $user_id ) && get_user_option( 'primary_blog', $user_id ) == $dashboard_blog->blog_id )
 				update_user_option( $user_id, 'primary_blog', $id, true );
 			$content_mail = sprintf( __( "New site created by %1s\n\nAddress: http://%2s\nName: %3s"), $current_user->user_login , $newdomain . $path, stripslashes( $title ) );
-			wp_mail( get_site_option('admin_email'),  sprintf( __( '[%s] New Site Created' ), $current_site->site_name ), $content_mail, 'From: "Site Admin" <' . get_site_option( 'admin_email' ) . '>' );
+			wp_mail( get_site_option('admin_email'), sprintf( __( '[%s] New Site Created' ), $current_site->site_name ), $content_mail, 'From: "Site Admin" <' . get_site_option( 'admin_email' ) . '>' );
 			wpmu_welcome_notification( $id, $user_id, $password, $title, array( 'public' => 1 ) );
 			wp_redirect( add_query_arg( array( 'updated' => 'true', 'action' => 'add-blog' ), wp_get_referer() ) );
 			exit();
@@ -220,7 +220,7 @@
 					$allowedthemes[$theme] = true;
 			}
 		}
-		update_option( 'allowedthemes',  $allowedthemes );
+		update_option( 'allowedthemes', $allowedthemes );
 
 		// options
 		if ( is_array( $_POST['option'] ) ) {
@@ -241,7 +241,7 @@
 		// home and siteurl
 		if ( isset( $_POST['update_home_url'] ) && $_POST['update_home_url'] == 'update' ) {
 			$blog_address = get_blogaddress_by_domain( $_POST['blog']['domain'], $_POST['blog']['path'] );
-			if ( get_option( 'siteurl' ) !=  $blog_address )
+			if ( get_option( 'siteurl' ) != $blog_address )
 				update_option( 'siteurl', $blog_address );
 
 			if ( get_option( 'home' ) != $blog_address )
@@ -436,11 +436,11 @@
 	break;
 
 	// Themes
-    case 'updatethemes':
+	case 'updatethemes':
 	if ( ! current_user_can( 'manage_network_themes' ) )
 		wp_die( __( 'You do not have permission to access this page.' ) );
 
-    	if ( is_array( $_POST['theme'] ) ) {
+		if ( is_array( $_POST['theme'] ) ) {
 			$themes = get_themes();
 			reset( $themes );
 			$allowed_themes = array();
@@ -450,7 +450,7 @@
 			}
 			update_site_option( 'allowedthemes', $allowed_themes );
 		}
-		wp_redirect( add_query_arg( array( 'updated' => 'true', 'action' => 'themes' ),  wp_get_referer() ) );
+		wp_redirect( add_query_arg( array( 'updated' => 'true', 'action' => 'themes' ), wp_get_referer() ) );
 		exit();
 	break;
 
@@ -504,8 +504,8 @@
 			echo '<div class="wrap">';
 			confirm_delete_users( $_POST['allusers'] );
 			echo '</div>';
-            require_once( 'admin-footer.php' );
-            exit();
+			require_once( 'admin-footer.php' );
+			exit();
 		} else {
 			wp_redirect( admin_url( 'ms-users.php' ) );
 		}
@@ -531,9 +531,9 @@
 							echo '<div class="wrap">';
 							confirm_delete_users( $_POST['allusers'] );
 							echo '</div>';
-				            require_once( 'admin-footer.php' );
-				            exit();
-       					break;
+							require_once( 'admin-footer.php' );
+							exit();
+						break;
 
 						case 'spam':
 							$user = new WP_User( $val );
@@ -617,7 +617,7 @@
 		$user_id = wpmu_create_user( esc_html( strtolower( $user['username'] ) ), $password, esc_html( $user['email'] ) );
 
 		if ( false == $user_id )
- 			wp_die( __( 'Duplicated username or email address.' ) );
+			wp_die( __( 'Duplicated username or email address.' ) );
 		else
 			wp_new_user_notification( $user_id, $password );
 
