Index: wp-admin/edit-comments.php
===================================================================
--- wp-admin/edit-comments.php	(revision 17125)
+++ wp-admin/edit-comments.php	(working copy)
@@ -237,8 +237,8 @@
 <?php } ?>
 
 <?php $wp_list_table->display(); ?>
+</form>
 </div>
-</form>
 
 <div id="ajax-response"></div>
 
Index: wp-admin/includes/class-wp-ms-sites-list-table.php
===================================================================
--- wp-admin/includes/class-wp-ms-sites-list-table.php	(revision 17125)
+++ wp-admin/includes/class-wp-ms-sites-list-table.php	(working copy)
@@ -267,7 +267,7 @@
 					break;
 
 					case 'lastupdated':
-						echo "<td valign='top'class='$column_name column-$column_name'$style>";
+						echo "<td valign='top' class='$column_name column-$column_name'$style>";
 							if ( 'list' == $mode )
 								$date = 'Y/m/d';
 							else
@@ -277,7 +277,7 @@
 					<?php
 					break;
 				case 'registered':
-						echo "<td valign='top'class='$column_name column-$column_name'$style>";
+						echo "<td valign='top' class='$column_name column-$column_name'$style>";
 						if ( $blog['registered'] == '0000-00-00 00:00:00' )
 							echo '&#x2014;';
 						else
@@ -287,7 +287,7 @@
 					<?php
 					break;
 				case 'users':
-						echo "<td valign='top'class='$column_name column-$column_name'$style>";
+						echo "<td valign='top' class='$column_name column-$column_name'$style>";
 							$blogusers = get_users( array( 'blog_id' => $blog['blog_id'], 'number' => 6) );
 							if ( is_array( $blogusers ) ) {
 								$blogusers_warning = '';
Index: wp-admin/includes/class-wp-ms-themes-list-table.php
===================================================================
--- wp-admin/includes/class-wp-ms-themes-list-table.php	(revision 17125)
+++ wp-admin/includes/class-wp-ms-themes-list-table.php	(working copy)
@@ -217,7 +217,7 @@
 
 			if ( 'search' != $type ) {
 				$status_links[$type] = sprintf( "<a href='%s' %s>%s</a>",
-					add_query_arg('theme_status', $type, $url),
+					esc_url( add_query_arg('theme_status', $type, $url) ),
 					( $type == $status ) ? ' class="current"' : '',
 					sprintf( $text, number_format_i18n( $count ) )
 				);
@@ -293,7 +293,7 @@
 		$actions = apply_filters( "theme_action_links_$theme_key", $actions, $theme_key, $theme, $context );
  
 		$class = empty( $theme['enabled'] ) ? 'inactive' : 'active';
-		$checkbox_id = md5($theme['Name']) . "_checkbox";
+		$checkbox_id = "checkbox_" . md5($theme['Name']);
 		$checkbox = "<input type='checkbox' name='checked[]' value='" . esc_attr( $theme_key ) . "' id='" . $checkbox_id . "' /><label class='screen-reader-text' for='" . $checkbox_id . "' >" . __('Select') . " " . $theme['Name'] . "</label>";
 
 		$description = '<p>' . $theme['Description'] . '</p>';
@@ -325,14 +325,13 @@
 						<div class='$class second theme-version-author-uri'>";
 
 					$theme_meta = array();
+
 					if ( !empty( $theme['Version'] ) )
 						$theme_meta[] = sprintf( __( 'Version %s' ), $theme['Version'] );
-					if ( !empty( $theme['Author'] ) ) {
-						$author = $theme['Author'];
-						if ( !empty( $theme['Author URI'] ) )
-							$author = '<a href="' . $theme['Author URI'] . '" title="' . esc_attr__( 'Visit author homepage' ) . '">' . $theme['Author'] . '</a>';
-						$theme_meta[] = sprintf( __( 'By %s' ), $author );
-					}
+
+					if ( !empty( $theme['Author'] ) )
+						$theme_meta[] = sprintf( __( 'By %s' ), $theme['Author'] );
+
 					if ( !empty( $theme['Theme URI'] ) )
 						$theme_meta[] = '<a href="' . $theme['Theme URI'] . '" title="' . esc_attr__( 'Visit theme homepage' ) . '">' . __( 'Visit Theme Site' ) . '</a>';
 
Index: wp-admin/includes/dashboard.php
===================================================================
--- wp-admin/includes/dashboard.php	(revision 17125)
+++ wp-admin/includes/dashboard.php	(working copy)
@@ -442,14 +442,14 @@
 	<form name="searchform" action="<?php echo network_admin_url('users.php'); ?>" method="get">
 		<p>
 			<input type="text" name="s" value="" size="17" />
-			<?php submit_button( __( 'Search Users' ), 'button', 'submit', false ); ?>
+			<?php submit_button( __( 'Search Users' ), 'button', 'submit', false, array( 'id' => 'submit_users' ) ); ?>
 		</p>
 	</form>
 
 	<form name="searchform" action="<?php echo network_admin_url('sites.php'); ?>" method="get">
 		<p>
 			<input type="text" name="s" value="" size="17" />
-			<?php submit_button( __( 'Search Sites' ), 'button', 'submit', false ); ?>
+			<?php submit_button( __( 'Search Sites' ), 'button', 'submit', false, array( 'id' => 'submit_sites' ) ); ?>
 		</p>
 	</form>
 <?php
Index: wp-admin/includes/class-wp-plugins-list-table.php
===================================================================
--- wp-admin/includes/class-wp-plugins-list-table.php	(revision 17125)
+++ wp-admin/includes/class-wp-plugins-list-table.php	(working copy)
@@ -384,7 +384,7 @@
 		$actions = apply_filters( $prefix . "plugin_action_links_$plugin_file", $actions, $plugin_file, $plugin_data, $context );
 
 		$class = $is_active ? 'active' : 'inactive';
-		$checkbox_id = md5($plugin_data['Name']) . "_checkbox";
+		$checkbox_id =  "checkbox_" . md5($plugin_data['Name']);
 		$checkbox = in_array( $status, array( 'mustuse', 'dropins' ) ) ? '' : "<input type='checkbox' name='checked[]' value='" . esc_attr( $plugin_file ) . "' id='" . $checkbox_id . "' /><label class='screen-reader-text' for='" . $checkbox_id . "' >" . __('Select') . " " . $plugin_data['Name'] . "</label>";
 		if ( 'dropins' != $context ) {
 			$description = '<p>' . ( $plugin_data['Description'] ? $plugin_data['Description'] : '&nbsp;' ) . '</p>';
Index: wp-admin/upload.php
===================================================================
--- wp-admin/upload.php	(revision 17125)
+++ wp-admin/upload.php	(working copy)
@@ -213,10 +213,8 @@
 <div id="ajax-response"></div>
 <?php find_posts_div(); ?>
 <br class="clear" />
-</div>
-</form>
-<br class="clear" />
 
+</form>
 </div>
 
 <?php
