Index: wp-admin/includes/class-wp-ms-users-list-table.php
===================================================================
--- wp-admin/includes/class-wp-ms-users-list-table.php	(revision 28046)
+++ wp-admin/includes/class-wp-ms-users-list-table.php	(working copy)
@@ -140,6 +140,10 @@
 		);
 	}
 
+	function get_primary_column() {
+		return( 'username' );
+	}
+
 	function display_rows() {
 		global $mode;
 
@@ -159,10 +163,14 @@
 			<tr class="<?php echo $alt; ?>">
 			<?php
 
-			list( $columns, $hidden ) = $this->get_column_info();
+			list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info();
 
 			foreach ( $columns as $column_name => $column_display_name ) :
-				$class = "class='$column_name column-$column_name'";
+				if( $primary == $column_name ) {
+					$class = "class='$column_name column-$column_name has-row-actions'";
+				} else {
+					$class = "class='$column_name column-$column_name'";
+				}
 
 				$style = '';
 				if ( in_array( $column_name, $hidden ) )
@@ -190,36 +198,22 @@
 							?></strong>
 							<br/>
 							<?php
-								$actions = array();
-								$actions['edit'] = '<a href="' . $edit_link . '">' . __( 'Edit' ) . '</a>';
-
-								if ( current_user_can( 'delete_user', $user->ID ) && ! in_array( $user->user_login, $super_admins ) ) {
-									$actions['delete'] = '<a href="' . $delete = esc_url( network_admin_url( add_query_arg( '_wp_http_referer', urlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) ), wp_nonce_url( 'users.php', 'deleteuser' ) . '&amp;action=deleteuser&amp;id=' . $user->ID ) ) ) . '" class="delete">' . __( 'Delete' ) . '</a>';
-								}
-
-								/**
-								 * Filter the action links displayed under each user
-								 * in the Network Admin Users list table.
-								 *
-								 * @since 3.2.0
-								 *
-								 * @param array   $actions An array of action links to be displayed.
-								 *                         Default 'Edit', 'Delete'.
-								 * @param WP_User $user    WP_User object.
-								 */
-								$actions = apply_filters( 'ms_user_row_actions', $actions, $user );
-								echo $this->row_actions( $actions );
+								echo $this->handle_actions( $user, $column_name, $primary );
 							?>
 						</td>
 					<?php
 					break;
 
 					case 'name':
-						echo "<td $attributes>$user->first_name $user->last_name</td>";
+						echo "<td $attributes>$user->first_name $user->last_name";
+						echo $this->handle_actions( $user, $column_name, $primary );
+						echo "</td>";
 					break;
 
 					case 'email':
-						echo "<td $attributes><a href='mailto:$user->user_email'>$user->user_email</a></td>";
+						echo "<td $attributes><a href='mailto:$user->user_email'>$user->user_email</a>";
+						echo $this->handle_actions( $user, $column_name, $primary );
+						echo "</td>";
 					break;
 
 					case 'registered':
@@ -228,7 +222,9 @@
 						else
 							$date = 'Y/m/d \<\b\r \/\> g:i:s a';
 
-						echo "<td $attributes>" . mysql2date( $date, $user->user_registered ) . "</td>";
+						echo "<td $attributes>" . mysql2date( $date, $user->user_registered );
+						echo $this->handle_actions( $user, $column_name, $primary );
+						echo "</td>";
 					break;
 
 					case 'blogs':
@@ -280,6 +276,7 @@
 									echo '</small></span><br/>';
 								}
 							}
+						echo $this->handle_actions( $user, $column_name, $primary );
 							?>
 						</td>
 					<?php
@@ -289,6 +286,7 @@
 						echo "<td $attributes>";
 						/** This filter is documented in wp-admin/includes/class-wp-users-list-table.php */
 						echo apply_filters( 'manage_users_custom_column', '', $column_name, $user->ID );
+						echo $this->handle_actions( $user, $column_name, $primary );
 						echo "</td>";
 					break;
 				}
@@ -298,4 +296,30 @@
 			<?php
 		}
 	}
+
+	function handle_actions( $user, $column_name, $primary ) {
+		$super_admins = get_super_admins();
+		if( $primary == $column_name ) {
+			$actions = array();
+			$edit_link = esc_url( add_query_arg( 'wp_http_referer', urlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) ), get_edit_user_link( $user->ID ) ) );
+			$actions['edit'] = '<a href="' . $edit_link . '">' . __( 'Edit' ) . '</a>';
+
+			if ( current_user_can( 'delete_user', $user->ID ) && ! in_array( $user->user_login, $super_admins ) ) {
+				$actions['delete'] = '<a href="' . $delete = esc_url( network_admin_url( add_query_arg( '_wp_http_referer', urlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) ), wp_nonce_url( 'users.php', 'deleteuser' ) . '&amp;action=deleteuser&amp;id=' . $user->ID ) ) ) . '" class="delete">' . __( 'Delete' ) . '</a>';
+			}
+
+			/**
+			 * Filter the action links displayed under each user
+			 * in the Network Admin Users list table.
+			 *
+			 * @since 3.2.0
+			 *
+			 * @param array   $actions An array of action links to be displayed.
+			 *                         Default 'Edit', 'Delete'.
+			 * @param WP_User $user    WP_User object.
+			 */
+			$actions = apply_filters( 'ms_user_row_actions', $actions, $user );
+			return $this->row_actions( $actions );
+		}
+	}
 }
Index: wp-admin/includes/class-wp-plugins-list-table.php
===================================================================
--- wp-admin/includes/class-wp-plugins-list-table.php	(revision 28046)
+++ wp-admin/includes/class-wp-plugins-list-table.php	(working copy)
@@ -467,7 +467,7 @@
 
 		echo "<tr id='$id' class='$class'>";
 
-		list( $columns, $hidden ) = $this->get_column_info();
+		list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info();
 
 		foreach ( $columns as $column_name => $column_display_name ) {
 			$style = '';
@@ -479,13 +479,21 @@
 					echo "<th scope='row' class='check-column'>$checkbox</th>";
 					break;
 				case 'name':
-					echo "<td class='plugin-title'$style><strong>$plugin_name</strong>";
-					echo $this->row_actions( $actions, true );
+					if( $primary == $column_name ) {
+						echo "<td class='plugin-title has-row-actions'$style><strong>$plugin_name</strong>";
+						echo $this->row_actions( $actions, true );
+					} else {
+						echo "<td class='plugin-title'$style><strong>$plugin_name</strong>";
+					}
 					echo "</td>";
 					break;
 				case 'description':
-					echo "<td class='column-description desc'$style>
-						<div class='plugin-description'>$description</div>
+					if( $primary == $column_name ) {
+						echo "<td class='column-description desc has-row-actions'$style>";
+					} else {
+						echo "<td class='column-description desc'$style>";
+					}
+					echo "<div class='plugin-description'>$description</div>
 						<div class='$class second plugin-version-author-uri'>";
 
 					$plugin_meta = array();
@@ -517,6 +525,9 @@
 					$plugin_meta = apply_filters( 'plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data, $status );
 					echo implode( ' | ', $plugin_meta );
 
+					if( $primary == $column_name ) {
+						echo $this->row_actions( $actions, true );
+					}
 					echo "</div></td>";
 					break;
 				default:
@@ -567,4 +578,8 @@
 		 */
 		do_action( "after_plugin_row_$plugin_file", $plugin_file, $plugin_data, $status );
 	}
+
+	function get_primary_column() {
+		return( 'name' );
+	}
 }
Index: wp-admin/includes/class-wp-comments-list-table.php
===================================================================
--- wp-admin/includes/class-wp-comments-list-table.php	(revision 28046)
+++ wp-admin/includes/class-wp-comments-list-table.php	(working copy)
@@ -308,6 +308,10 @@
 		);
 	}
 
+	function get_primary_column() {
+		return( 'comment' );
+	}
+
 	function display() {
 		extract( $this->_args );
 
@@ -375,21 +379,6 @@
 		$comment_url = esc_url( get_comment_link( $comment->comment_ID ) );
 		$the_comment_status = wp_get_comment_status( $comment->comment_ID );
 
-		if ( $user_can ) {
-			$del_nonce = esc_html( '_wpnonce=' . wp_create_nonce( "delete-comment_$comment->comment_ID" ) );
-			$approve_nonce = esc_html( '_wpnonce=' . wp_create_nonce( "approve-comment_$comment->comment_ID" ) );
-
-			$url = "comment.php?c=$comment->comment_ID";
-
-			$approve_url = esc_url( $url . "&action=approvecomment&$approve_nonce" );
-			$unapprove_url = esc_url( $url . "&action=unapprovecomment&$approve_nonce" );
-			$spam_url = esc_url( $url . "&action=spamcomment&$del_nonce" );
-			$unspam_url = esc_url( $url . "&action=unspamcomment&$del_nonce" );
-			$trash_url = esc_url( $url . "&action=trashcomment&$del_nonce" );
-			$untrash_url = esc_url( $url . "&action=untrashcomment&$del_nonce" );
-			$delete_url = esc_url( $url . "&action=deletecomment&$del_nonce" );
-		}
-
 		echo '<div class="comment-author">';
 			$this->column_author( $comment );
 		echo '</div>';
@@ -424,71 +413,6 @@
 		</div>
 		<?php
 		}
-
-		if ( $user_can ) {
-			// preorder it: Approve | Reply | Quick Edit | Edit | Spam | Trash
-			$actions = array(
-				'approve' => '', 'unapprove' => '',
-				'reply' => '',
-				'quickedit' => '',
-				'edit' => '',
-				'spam' => '', 'unspam' => '',
-				'trash' => '', 'untrash' => '', 'delete' => ''
-			);
-
-			if ( $comment_status && 'all' != $comment_status ) { // not looking at all comments
-				if ( 'approved' == $the_comment_status )
-					$actions['unapprove'] = "<a href='$unapprove_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID:e7e7d3:action=dim-comment&amp;new=unapproved' class='vim-u vim-destructive' title='" . esc_attr__( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
-				else if ( 'unapproved' == $the_comment_status )
-					$actions['approve'] = "<a href='$approve_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID:e7e7d3:action=dim-comment&amp;new=approved' class='vim-a vim-destructive' title='" . esc_attr__( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>';
-			} else {
-				$actions['approve'] = "<a href='$approve_url' data-wp-lists='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=approved' class='vim-a' title='" . esc_attr__( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>';
-				$actions['unapprove'] = "<a href='$unapprove_url' data-wp-lists='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=unapproved' class='vim-u' title='" . esc_attr__( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
-			}
-
-			if ( 'spam' != $the_comment_status && 'trash' != $the_comment_status ) {
-				$actions['spam'] = "<a href='$spam_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::spam=1' class='vim-s vim-destructive' title='" . esc_attr__( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */ _x( 'Spam', 'verb' ) . '</a>';
-			} elseif ( 'spam' == $the_comment_status ) {
-				$actions['unspam'] = "<a href='$unspam_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID:66cc66:unspam=1' class='vim-z vim-destructive'>" . _x( 'Not Spam', 'comment' ) . '</a>';
-			} elseif ( 'trash' == $the_comment_status ) {
-				$actions['untrash'] = "<a href='$untrash_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID:66cc66:untrash=1' class='vim-z vim-destructive'>" . __( 'Restore' ) . '</a>';
-			}
-
-			if ( 'spam' == $the_comment_status || 'trash' == $the_comment_status || !EMPTY_TRASH_DAYS ) {
-				$actions['delete'] = "<a href='$delete_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::delete=1' class='delete vim-d vim-destructive'>" . __( 'Delete Permanently' ) . '</a>';
-			} else {
-				$actions['trash'] = "<a href='$trash_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::trash=1' class='delete vim-d vim-destructive' title='" . esc_attr__( 'Move this comment to the trash' ) . "'>" . _x( 'Trash', 'verb' ) . '</a>';
-			}
-
-			if ( 'spam' != $the_comment_status && 'trash' != $the_comment_status ) {
-				$actions['edit'] = "<a href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . esc_attr__( 'Edit comment' ) . "'>". __( 'Edit' ) . '</a>';
-				$actions['quickedit'] = '<a onclick="window.commentReply && commentReply.open( \''.$comment->comment_ID.'\',\''.$post->ID.'\',\'edit\' );return false;" class="vim-q" title="'.esc_attr__( 'Quick Edit' ).'" href="#">' . __( 'Quick&nbsp;Edit' ) . '</a>';
-				$actions['reply'] = '<a onclick="window.commentReply && commentReply.open( \''.$comment->comment_ID.'\',\''.$post->ID.'\' );return false;" class="vim-r" title="'.esc_attr__( 'Reply to this comment' ).'" href="#">' . __( 'Reply' ) . '</a>';
-			}
-
-			/** This filter is documented in wp-admin/includes/dashboard.php */
-			$actions = apply_filters( 'comment_row_actions', array_filter( $actions ), $comment );
-
-			$i = 0;
-			echo '<div class="row-actions">';
-			foreach ( $actions as $action => $link ) {
-				++$i;
-				( ( ( 'approve' == $action || 'unapprove' == $action ) && 2 === $i ) || 1 === $i ) ? $sep = '' : $sep = ' | ';
-
-				// Reply and quickedit need a hide-if-no-js span when not added with ajax
-				if ( ( 'reply' == $action || 'quickedit' == $action ) && ! defined('DOING_AJAX') )
-					$action .= ' hide-if-no-js';
-				elseif ( ( $action == 'untrash' && $the_comment_status == 'trash' ) || ( $action == 'unspam' && $the_comment_status == 'spam' ) ) {
-					if ( '1' == get_comment_meta( $comment->comment_ID, '_wp_trash_meta_status', true ) )
-						$action .= ' approve';
-					else
-						$action .= ' unapprove';
-				}
-
-				echo "<span class='$action'>$sep$link</span>";
-			}
-			echo '</div>';
-		}
 	}
 
 	function column_author( $comment ) {
@@ -564,6 +488,97 @@
 		 */
 		do_action( 'manage_comments_custom_column', $column_name, $comment->comment_ID );
 	}
+
+	function handle_actions( $comment, $column_name, $primary ) {
+		global $comment_status;
+		$post = get_post();
+
+		$user_can = $this->user_can;
+
+		$comment_url = esc_url( get_comment_link( $comment->comment_ID ) );
+		$the_comment_status = wp_get_comment_status( $comment->comment_ID );
+
+		if( $primary == $column_name ) {
+			if ( $user_can ) {
+				$del_nonce = esc_html( '_wpnonce=' . wp_create_nonce( "delete-comment_$comment->comment_ID" ) );
+				$approve_nonce = esc_html( '_wpnonce=' . wp_create_nonce( "approve-comment_$comment->comment_ID" ) );
+
+				$url = "comment.php?c=$comment->comment_ID";
+
+				$approve_url = esc_url( $url . "&action=approvecomment&$approve_nonce" );
+				$unapprove_url = esc_url( $url . "&action=unapprovecomment&$approve_nonce" );
+				$spam_url = esc_url( $url . "&action=spamcomment&$del_nonce" );
+				$unspam_url = esc_url( $url . "&action=unspamcomment&$del_nonce" );
+				$trash_url = esc_url( $url . "&action=trashcomment&$del_nonce" );
+				$untrash_url = esc_url( $url . "&action=untrashcomment&$del_nonce" );
+				$delete_url = esc_url( $url . "&action=deletecomment&$del_nonce" );
+
+				// preorder it: Approve | Reply | Quick Edit | Edit | Spam | Trash
+				$actions = array(
+					'approve' => '', 'unapprove' => '',
+					'reply' => '',
+					'quickedit' => '',
+					'edit' => '',
+					'spam' => '', 'unspam' => '',
+					'trash' => '', 'untrash' => '', 'delete' => ''
+				);
+
+				if ( $comment_status && 'all' != $comment_status ) { // not looking at all comments
+					if ( 'approved' == $the_comment_status )
+						$actions['unapprove'] = "<a href='$unapprove_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID:e7e7d3:action=dim-comment&amp;new=unapproved' class='vim-u vim-destructive' title='" . esc_attr__( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
+					else if ( 'unapproved' == $the_comment_status )
+						$actions['approve'] = "<a href='$approve_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID:e7e7d3:action=dim-comment&amp;new=approved' class='vim-a vim-destructive' title='" . esc_attr__( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>';
+				} else {
+					$actions['approve'] = "<a href='$approve_url' data-wp-lists='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=approved' class='vim-a' title='" . esc_attr__( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>';
+					$actions['unapprove'] = "<a href='$unapprove_url' data-wp-lists='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=unapproved' class='vim-u' title='" . esc_attr__( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
+				}
+
+				if ( 'spam' != $the_comment_status && 'trash' != $the_comment_status ) {
+					$actions['spam'] = "<a href='$spam_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::spam=1' class='vim-s vim-destructive' title='" . esc_attr__( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */ _x( 'Spam', 'verb' ) . '</a>';
+				} elseif ( 'spam' == $the_comment_status ) {
+					$actions['unspam'] = "<a href='$unspam_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID:66cc66:unspam=1' class='vim-z vim-destructive'>" . _x( 'Not Spam', 'comment' ) . '</a>';
+				} elseif ( 'trash' == $the_comment_status ) {
+					$actions['untrash'] = "<a href='$untrash_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID:66cc66:untrash=1' class='vim-z vim-destructive'>" . __( 'Restore' ) . '</a>';
+				}
+
+				if ( 'spam' == $the_comment_status || 'trash' == $the_comment_status || !EMPTY_TRASH_DAYS ) {
+					$actions['delete'] = "<a href='$delete_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::delete=1' class='delete vim-d vim-destructive'>" . __( 'Delete Permanently' ) . '</a>';
+				} else {
+					$actions['trash'] = "<a href='$trash_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::trash=1' class='delete vim-d vim-destructive' title='" . esc_attr__( 'Move this comment to the trash' ) . "'>" . _x( 'Trash', 'verb' ) . '</a>';
+				}
+
+				if ( 'spam' != $the_comment_status && 'trash' != $the_comment_status ) {
+					$actions['edit'] = "<a href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . esc_attr__( 'Edit comment' ) . "'>". __( 'Edit' ) . '</a>';
+					$actions['quickedit'] = '<a onclick="window.commentReply && commentReply.open( \''.$comment->comment_ID.'\',\''.$post->ID.'\',\'edit\' );return false;" class="vim-q" title="'.esc_attr__( 'Quick Edit' ).'" href="#">' . __( 'Quick&nbsp;Edit' ) . '</a>';
+					$actions['reply'] = '<a onclick="window.commentReply && commentReply.open( \''.$comment->comment_ID.'\',\''.$post->ID.'\' );return false;" class="vim-r" title="'.esc_attr__( 'Reply to this comment' ).'" href="#">' . __( 'Reply' ) . '</a>';
+				}
+
+				/** This filter is documented in wp-admin/includes/dashboard.php */
+				$actions = apply_filters( 'comment_row_actions', array_filter( $actions ), $comment );
+
+				$i = 0;
+				$actions_handled =  '<div class="row-actions">';
+				foreach ( $actions as $action => $link ) {
+					++$i;
+					( ( ( 'approve' == $action || 'unapprove' == $action ) && 2 === $i ) || 1 === $i ) ? $sep = '' : $sep = ' | ';
+
+					// Reply and quickedit need a hide-if-no-js span when not added with ajax
+					if ( ( 'reply' == $action || 'quickedit' == $action ) && ! defined('DOING_AJAX') )
+						$action .= ' hide-if-no-js';
+					elseif ( ( $action == 'untrash' && $the_comment_status == 'trash' ) || ( $action == 'unspam' && $the_comment_status == 'spam' ) ) {
+						if ( '1' == get_comment_meta( $comment->comment_ID, '_wp_trash_meta_status', true ) )
+							$action .= ' approve';
+						else
+							$action .= ' unapprove';
+					}
+
+					$actions_handled .=  "<span class='$action'>$sep$link</span>";
+				}
+				$actions_handled .=  '</div>';
+				return( $actions_handled );
+			}
+		}
+	}
 }
 
 /**
Index: wp-admin/includes/class-wp-ms-sites-list-table.php
===================================================================
--- wp-admin/includes/class-wp-ms-sites-list-table.php	(revision 28046)
+++ wp-admin/includes/class-wp-ms-sites-list-table.php	(working copy)
@@ -177,6 +177,10 @@
 		);
 	}
 
+	function get_primary_column() {
+		return( 'blogname' );
+	}
+
 	function display_rows() {
 		global $mode;
 
@@ -214,7 +218,7 @@
 
 			$blogname = ( is_subdomain_install() ) ? str_replace( '.' . get_current_site()->domain, '', $blog['domain'] ) : $blog['path'];
 
-			list( $columns, $hidden ) = $this->get_column_info();
+			list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info();
 
 			foreach ( $columns as $column_name => $column_display_name ) {
 				$style = '';
@@ -240,7 +244,12 @@
 					break;
 
 					case 'blogname':
-						echo "<td class='column-$column_name $column_name'$style>"; ?>
+						if( $primary == $column_name ) {
+							echo "<td class='column-$column_name $column_name has-row-actions'$style>";
+						} else {
+							echo "<td class='column-$column_name $column_name'$style>";
+						}
+					?>
 							<a href="<?php echo esc_url( network_admin_url( 'site-info.php?id=' . $blog['blog_id'] ) ); ?>" class="edit"><?php echo $blogname . $blog_state; ?></a>
 							<?php
 							if ( 'list' != $mode ) {
@@ -249,84 +258,51 @@
 								restore_current_blog();
 							}
 
-							// Preordered.
-							$actions = array(
-								'edit' => '', 'backend' => '',
-								'activate' => '', 'deactivate' => '',
-								'archive' => '', 'unarchive' => '',
-								'spam' => '', 'unspam' => '',
-								'delete' => '',
-								'visit' => '',
-							);
+							echo $this->handle_actions( $blog, $column_name, $primary );
 
-							$actions['edit']	= '<span class="edit"><a href="' . esc_url( network_admin_url( 'site-info.php?id=' . $blog['blog_id'] ) ) . '">' . __( 'Edit' ) . '</a></span>';
-							$actions['backend']	= "<span class='backend'><a href='" . esc_url( get_admin_url( $blog['blog_id'] ) ) . "' class='edit'>" . __( 'Dashboard' ) . '</a></span>';
-							if ( get_current_site()->blog_id != $blog['blog_id'] ) {
-								if ( get_blog_status( $blog['blog_id'], 'deleted' ) == '1' )
-									$actions['activate']	= '<span class="activate"><a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&amp;action2=activateblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( 'You are about to activate the site %s' ), $blogname ) ) ), 'confirm' ) ) . '">' . __( 'Activate' ) . '</a></span>';
-								else
-									$actions['deactivate']	= '<span class="activate"><a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&amp;action2=deactivateblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( 'You are about to deactivate the site %s' ), $blogname ) ) ), 'confirm') ) . '">' . __( 'Deactivate' ) . '</a></span>';
-
-								if ( get_blog_status( $blog['blog_id'], 'archived' ) == '1' )
-									$actions['unarchive']	= '<span class="archive"><a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&amp;action2=unarchiveblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( 'You are about to unarchive the site %s.' ), $blogname ) ) ), 'confirm') ) . '">' . __( 'Unarchive' ) . '</a></span>';
-								else
-									$actions['archive']	= '<span class="archive"><a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&amp;action2=archiveblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( 'You are about to archive the site %s.' ), $blogname ) ) ), 'confirm') ) . '">' . _x( 'Archive', 'verb; site' ) . '</a></span>';
-
-								if ( get_blog_status( $blog['blog_id'], 'spam' ) == '1' )
-									$actions['unspam']	= '<span class="spam"><a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&amp;action2=unspamblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( 'You are about to unspam the site %s.' ), $blogname ) ) ), 'confirm') ) . '">' . _x( 'Not Spam', 'site' ) . '</a></span>';
-								else
-									$actions['spam']	= '<span class="spam"><a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&amp;action2=spamblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( 'You are about to mark the site %s as spam.' ), $blogname ) ) ), 'confirm') ) . '">' . _x( 'Spam', 'site' ) . '</a></span>';
-
-								if ( current_user_can( 'delete_site', $blog['blog_id'] ) )
-									$actions['delete']	= '<span class="delete"><a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&amp;action2=deleteblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( 'You are about to delete the site %s.' ), $blogname ) ) ), 'confirm') ) . '">' . __( 'Delete' ) . '</a></span>';
-							}
-
-							$actions['visit']	= "<span class='view'><a href='" . esc_url( get_home_url( $blog['blog_id'], '/' ) ) . "' rel='permalink'>" . __( 'Visit' ) . '</a></span>';
-
-							/**
-							 * Filter the action links displayed for each site in the Sites list table.
-							 *
-							 * The 'Edit', 'Dashboard', 'Delete', and 'Visit' links are displayed by
-							 * default for each site. The site's status determines whether to show the
-							 * 'Activate' or 'Deactivate' link, 'Unarchive' or 'Archive' links, and
-							 * 'Not Spam' or 'Spam' link for each site.
-							 *
-							 * @since 3.1.0
-							 *
-							 * @param array  $actions  An array of action links to be displayed.
-							 * @param int    $blog_id  The site ID.
-							 * @param string $blogname Site path, formatted depending on whether it is a sub-domain
-							 *                         or subdirectory multisite install.
-							 */
-							$actions = apply_filters( 'manage_sites_action_links', array_filter( $actions ), $blog['blog_id'], $blogname );
-							echo $this->row_actions( $actions );
 					?>
 						</td>
 					<?php
 					break;
 
 					case 'lastupdated':
-						echo "<td class='$column_name column-$column_name'$style>";
+						if( $primary == $column_name ) {
+							echo "<td class='$column_name column-$column_name has-row-actions'$style>";
+						} else {
+							echo "<td class='$column_name column-$column_name'$style>";
+						}
 							if ( 'list' == $mode )
 								$date = 'Y/m/d';
 							else
 								$date = 'Y/m/d \<\b\r \/\> g:i:s a';
-							echo ( $blog['last_updated'] == '0000-00-00 00:00:00' ) ? __( 'Never' ) : mysql2date( $date, $blog['last_updated'] ); ?>
+							echo ( $blog['last_updated'] == '0000-00-00 00:00:00' ) ? __( 'Never' ) : mysql2date( $date, $blog['last_updated'] );
+							echo $this->handle_actions( $blog, $column_name, $primary );
+						?>
 						</td>
 					<?php
 					break;
 				case 'registered':
-						echo "<td class='$column_name column-$column_name'$style>";
+						if( $primary == $column_name ) {
+							echo "<td class='$column_name column-$column_name has-row-actions'$style>";
+						} else {
+							echo "<td class='$column_name column-$column_name'$style>";
+						}
 						if ( $blog['registered'] == '0000-00-00 00:00:00' )
 							echo '&#x2014;';
 						else
 							echo mysql2date( $date, $blog['registered'] );
+
+						echo $this->handle_actions( $blog, $column_name, $primary );
 						?>
 						</td>
 					<?php
 					break;
 				case 'users':
-						echo "<td class='$column_name column-$column_name'$style>";
+						if( $primary == $column_name ) {
+							echo "<td class='$column_name column-$column_name has-row-actions'$style>";
+						} else {
+							echo "<td class='$column_name column-$column_name'$style>";
+						}
 							$blogusers = get_users( array( 'blog_id' => $blog['blog_id'], 'number' => 6) );
 							if ( is_array( $blogusers ) ) {
 								$blogusers_warning = '';
@@ -343,6 +319,7 @@
 								if ( $blogusers_warning != '' )
 									echo '<strong>' . $blogusers_warning . '</strong><br />';
 							}
+							echo $this->handle_actions( $blog, $column_name, $primary );
 							?>
 						</td>
 					<?php
@@ -350,7 +327,11 @@
 
 				case 'plugins': ?>
 					<?php if ( has_filter( 'wpmublogsaction' ) ) {
-					echo "<td class='$column_name column-$column_name'$style>";
+						if( $primary == $column_name ) {
+							echo "<td class='$column_name column-$column_name has-row-actions'$style>";
+						} else {
+							echo "<td class='$column_name column-$column_name'$style>";
+						}
 						/**
 						 * Fires inside the auxiliary 'Actions' column of the Sites list table.
 						 *
@@ -360,13 +341,18 @@
 						 *
 						 * @param int $blog_id The site ID.
 						 */
-						do_action( 'wpmublogsaction', $blog['blog_id'] ); ?>
+						do_action( 'wpmublogsaction', $blog['blog_id'] );
+						echo $this->handle_actions( $blog, $column_name, $primary ); ?>
 					</td>
 					<?php }
 					break;
 
 				default:
-					echo "<td class='$column_name column-$column_name'$style>";
+					if( $primary == $column_name ) {
+						echo "<td class='$column_name column-$column_name has-row-actions'$style>";
+					} else {
+						echo "<td class='$column_name column-$column_name'$style>";
+					}
 					/**
 					 * Fires for each registered custom column in the Sites list table.
 					 *
@@ -376,6 +362,7 @@
 					 * @param int    $blog_id     The site ID.
 					 */
 					do_action( 'manage_sites_custom_column', $column_name, $blog['blog_id'] );
+					echo $this->handle_actions( $blog, $column_name, $primary );
 					echo "</td>";
 					break;
 				}
@@ -385,4 +372,62 @@
 			<?php
 		}
 	}
+
+	function handle_actions( $blog, $column_name, $primary ) {
+		global $current_site;
+		if( $primary == $column_name ) {
+			$blogname = ( is_subdomain_install() ) ? str_replace( '.'.$current_site->domain, '', $blog['domain'] ) : $blog['path'];
+			// Preordered.
+			$actions = array(
+				'edit' => '', 'backend' => '',
+				'activate' => '', 'deactivate' => '',
+				'archive' => '', 'unarchive' => '',
+				'spam' => '', 'unspam' => '',
+				'delete' => '',
+				'visit' => '',
+			);
+
+			$actions['edit']	= '<span class="edit"><a href="' . esc_url( network_admin_url( 'site-info.php?id=' . $blog['blog_id'] ) ) . '">' . __( 'Edit' ) . '</a></span>';
+			$actions['backend']	= "<span class='backend'><a href='" . esc_url( get_admin_url( $blog['blog_id'] ) ) . "' class='edit'>" . __( 'Dashboard' ) . '</a></span>';
+			if ( get_current_site()->blog_id != $blog['blog_id'] ) {
+				if ( get_blog_status( $blog['blog_id'], 'deleted' ) == '1' )
+					$actions['activate']	= '<span class="activate"><a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&amp;action2=activateblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( 'You are about to activate the site %s' ), $blogname ) ) ), 'confirm' ) ) . '">' . __( 'Activate' ) . '</a></span>';
+				else
+					$actions['deactivate']	= '<span class="activate"><a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&amp;action2=deactivateblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( 'You are about to deactivate the site %s' ), $blogname ) ) ), 'confirm') ) . '">' . __( 'Deactivate' ) . '</a></span>';
+
+				if ( get_blog_status( $blog['blog_id'], 'archived' ) == '1' )
+					$actions['unarchive']	= '<span class="archive"><a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&amp;action2=unarchiveblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( 'You are about to unarchive the site %s.' ), $blogname ) ) ), 'confirm') ) . '">' . __( 'Unarchive' ) . '</a></span>';
+				else
+					$actions['archive']	= '<span class="archive"><a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&amp;action2=archiveblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( 'You are about to archive the site %s.' ), $blogname ) ) ), 'confirm') ) . '">' . _x( 'Archive', 'verb; site' ) . '</a></span>';
+
+				if ( get_blog_status( $blog['blog_id'], 'spam' ) == '1' )
+					$actions['unspam']	= '<span class="spam"><a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&amp;action2=unspamblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( 'You are about to unspam the site %s.' ), $blogname ) ) ), 'confirm') ) . '">' . _x( 'Not Spam', 'site' ) . '</a></span>';
+				else
+					$actions['spam']	= '<span class="spam"><a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&amp;action2=spamblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( 'You are about to mark the site %s as spam.' ), $blogname ) ) ), 'confirm') ) . '">' . _x( 'Spam', 'site' ) . '</a></span>';
+
+				if ( current_user_can( 'delete_site', $blog['blog_id'] ) )
+					$actions['delete']	= '<span class="delete"><a href="' . esc_url( wp_nonce_url( network_admin_url( 'sites.php?action=confirm&amp;action2=deleteblog&amp;id=' . $blog['blog_id'] . '&amp;msg=' . urlencode( sprintf( __( 'You are about to delete the site %s.' ), $blogname ) ) ), 'confirm') ) . '">' . __( 'Delete' ) . '</a></span>';
+			}
+
+			$actions['visit']	= "<span class='view'><a href='" . esc_url( get_home_url( $blog['blog_id'], '/' ) ) . "' rel='permalink'>" . __( 'Visit' ) . '</a></span>';
+
+			/**
+			 * Filter the action links displayed for each site in the Sites list table.
+			 *
+			 * The 'Edit', 'Dashboard', 'Delete', and 'Visit' links are displayed by
+			 * default for each site. The site's status determines whether to show the
+			 * 'Activate' or 'Deactivate' link, 'Unarchive' or 'Archive' links, and
+			 * 'Not Spam' or 'Spam' link for each site.
+			 *
+			 * @since 3.1.0
+			 *
+			 * @param array  $actions  An array of action links to be displayed.
+			 * @param int    $blog_id  The site ID.
+			 * @param string $blogname Site path, formatted depending on whether it is a sub-domain
+			 *                         or subdirectory multisite install.
+			 */
+			$actions = apply_filters( 'manage_sites_action_links', array_filter( $actions ), $blog['blog_id'], $blogname );
+			return( $this->row_actions( $actions ) );
+		}
+	}
 }
Index: wp-admin/includes/class-wp-posts-list-table.php
===================================================================
--- wp-admin/includes/class-wp-posts-list-table.php	(revision 28046)
+++ wp-admin/includes/class-wp-posts-list-table.php	(working copy)
@@ -553,10 +553,14 @@
 		<tr id="post-<?php echo $post->ID; ?>" class="<?php echo implode( ' ', get_post_class( $classes, $post->ID ) ); ?>">
 	<?php
 
-		list( $columns, $hidden ) = $this->get_column_info();
+		list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info();
 
 		foreach ( $columns as $column_name => $column_display_name ) {
-			$class = "class=\"$column_name column-$column_name\"";
+			if ( $primary == $column_name ) {
+				$class = "class=\"$column_name column-$column_name has-row-actions\"";
+			} else {
+				$class = "class=\"$column_name column-$column_name\"";
+			}
 
 			$style = '';
 			if ( in_array( $column_name, $hidden ) )
@@ -584,7 +588,13 @@
 			break;
 
 			case 'title':
-				$attributes = 'class="post-title page-title column-title"' . $style;
+				if ( $primary == $column_name ) {
+					$attributes = 'class="post-title page-title column-title has_row_actions"';
+				} else {
+					$attributes = 'class="post-title page-title column-title"';
+				}
+				$attributes .= $style;
+
 				if ( $this->hierarchical_display ) {
 					if ( 0 == $level && (int) $post->post_parent > 0 ) {
 						//sent level 0 by accident, by default, or because we don't know the actual level
@@ -641,65 +651,8 @@
 				if ( ! $this->hierarchical_display && 'excerpt' == $mode && current_user_can( 'read_post', $post->ID ) )
 						the_excerpt();
 
-				$actions = array();
-				if ( $can_edit_post && 'trash' != $post->post_status ) {
-					$actions['edit'] = '<a href="' . get_edit_post_link( $post->ID, true ) . '" title="' . esc_attr( __( 'Edit this item' ) ) . '">' . __( 'Edit' ) . '</a>';
-					$actions['inline hide-if-no-js'] = '<a href="#" class="editinline" title="' . esc_attr( __( 'Edit this item inline' ) ) . '">' . __( 'Quick&nbsp;Edit' ) . '</a>';
-				}
-				if ( current_user_can( 'delete_post', $post->ID ) ) {
-					if ( 'trash' == $post->post_status )
-						$actions['untrash'] = "<a title='" . esc_attr( __( 'Restore this item from the Trash' ) ) . "' href='" . wp_nonce_url( admin_url( sprintf( $post_type_object->_edit_link . '&amp;action=untrash', $post->ID ) ), 'untrash-post_' . $post->ID ) . "'>" . __( 'Restore' ) . "</a>";
-					elseif ( EMPTY_TRASH_DAYS )
-						$actions['trash'] = "<a class='submitdelete' title='" . esc_attr( __( 'Move this item to the Trash' ) ) . "' href='" . get_delete_post_link( $post->ID ) . "'>" . __( 'Trash' ) . "</a>";
-					if ( 'trash' == $post->post_status || !EMPTY_TRASH_DAYS )
-						$actions['delete'] = "<a class='submitdelete' title='" . esc_attr( __( 'Delete this item permanently' ) ) . "' href='" . get_delete_post_link( $post->ID, '', true ) . "'>" . __( 'Delete Permanently' ) . "</a>";
-				}
-				if ( $post_type_object->public ) {
-					if ( in_array( $post->post_status, array( 'pending', 'draft', 'future' ) ) ) {
-						if ( $can_edit_post ) {
+				echo $this->handle_actions( $post, $column_name, $primary );
 
-							/** This filter is documented in wp-admin/includes/meta-boxes.php */
-							$actions['view'] = '<a href="' . esc_url( apply_filters( 'preview_post_link', set_url_scheme( add_query_arg( 'preview', 'true', get_permalink( $post->ID ) ) ) ) ) . '" title="' . esc_attr( sprintf( __( 'Preview &#8220;%s&#8221;' ), $title ) ) . '" rel="permalink">' . __( 'Preview' ) . '</a>';
-						}
-					} elseif ( 'trash' != $post->post_status ) {
-						$actions['view'] = '<a href="' . get_permalink( $post->ID ) . '" title="' . esc_attr( sprintf( __( 'View &#8220;%s&#8221;' ), $title ) ) . '" rel="permalink">' . __( 'View' ) . '</a>';
-					}
-				}
-
-				if ( is_post_type_hierarchical( $post->post_type ) ) {
-
-					/**
-					 * Filter the array of row action links on the Pages list table.
-					 *
-					 * The filter is evaluated only for hierarchical post types.
-					 *
-					 * @since 2.8.0
-					 *
-					 * @param array   $actions An array of row action links. Defaults are
-					 *                         'Edit', 'Quick Edit', 'Restore, 'Trash',
-					 *                         'Delete Permanently', 'Preview', and 'View'.
-					 * @param WP_Post $post    The post object.
-					 */
-					$actions = apply_filters( 'page_row_actions', $actions, $post );
-				} else {
-
-					/**
-					 * Filter the array of row action links on the Posts list table.
-					 *
-					 * The filter is evaluated only for non-hierarchical post types.
-					 *
-					 * @since 2.8.0
-					 *
-					 * @param array   $actions An array of row action links. Defaults are
-					 *                         'Edit', 'Quick Edit', 'Restore, 'Trash',
-					 *                         'Delete Permanently', 'Preview', and 'View'.
-					 * @param WP_Post $post    The post object.
-					 */
-					$actions = apply_filters( 'post_row_actions', $actions, $post );
-				}
-
-				echo $this->row_actions( $actions );
-
 				get_inline_data( $post );
 				echo '</td>';
 			break;
@@ -755,6 +708,7 @@
 				} else {
 					_e( 'Last Modified' );
 				}
+				echo $this->handle_actions( $post, $column_name, $primary );
 				echo '</td>';
 			break;
 
@@ -766,7 +720,7 @@
 
 				$this->comments_bubble( $post->ID, $pending_comments );
 			?>
-			</div></td>
+			</div><?php echo $this->handle_actions( $post, $column_name, $primary ); ?></td>
 			<?php
 			break;
 
@@ -777,6 +731,7 @@
 					esc_url( add_query_arg( array( 'post_type' => $post->post_type, 'author' => get_the_author_meta( 'ID' ) ), 'edit.php' )),
 					get_the_author()
 				);
+				echo $this->handle_actions( $post, $column_name, $primary );
 			?></td>
 			<?php
 			break;
@@ -817,6 +772,7 @@
 					} else {
 						echo '&#8212;';
 					}
+					echo $this->handle_actions( $post, $column_name, $primary );
 					echo '</td>';
 					break;
 				}
@@ -863,6 +819,7 @@
 				 * @param int    $post_id     The current post ID.
 				 */
 				do_action( "manage_{$post->post_type}_posts_custom_column", $column_name, $post->ID );
+				echo $this->handle_actions( $post, $column_name, $primary );
 			?></td>
 			<?php
 			break;
@@ -874,6 +831,76 @@
 		$GLOBALS['post'] = $global_post;
 	}
 
+	function get_primary_column() {
+		return( 'title' );
+	}
+
+	function handle_actions( $post, $column_name, $primary ) {
+		$title = _draft_or_post_title();
+		if ( $primary == $column_name ) {
+			$post_type_object = get_post_type_object( $post->post_type );
+			$can_edit_post = current_user_can( 'edit_post', $post->ID );
+			$actions = array();
+			if ( $can_edit_post && 'trash' != $post->post_status ) {
+				$actions['edit'] = '<a href="' . get_edit_post_link( $post->ID, true ) . '" title="' . esc_attr( __( 'Edit this item' ) ) . '">' . __( 'Edit' ) . '</a>';
+				$actions['inline hide-if-no-js'] = '<a href="#" class="editinline" title="' . esc_attr( __( 'Edit this item inline' ) ) . '">' . __( 'Quick&nbsp;Edit' ) . '</a>';
+			}
+			if ( current_user_can( 'delete_post', $post->ID ) ) {
+				if ( 'trash' == $post->post_status )
+					$actions['untrash'] = "<a title='" . esc_attr( __( 'Restore this item from the Trash' ) ) . "' href='" . wp_nonce_url( admin_url( sprintf( $post_type_object->_edit_link . '&amp;action=untrash', $post->ID ) ), 'untrash-post_' . $post->ID ) . "'>" . __( 'Restore' ) . "</a>";
+				elseif ( EMPTY_TRASH_DAYS )
+					$actions['trash'] = "<a class='submitdelete' title='" . esc_attr( __( 'Move this item to the Trash' ) ) . "' href='" . get_delete_post_link( $post->ID ) . "'>" . __( 'Trash' ) . "</a>";
+				if ( 'trash' == $post->post_status || !EMPTY_TRASH_DAYS )
+					$actions['delete'] = "<a class='submitdelete' title='" . esc_attr( __( 'Delete this item permanently' ) ) . "' href='" . get_delete_post_link( $post->ID, '', true ) . "'>" . __( 'Delete Permanently' ) . "</a>";
+			}
+			if ( $post_type_object->public ) {
+				if ( in_array( $post->post_status, array( 'pending', 'draft', 'future' ) ) ) {
+					if ( $can_edit_post ) {
+
+						/** This filter is documented in wp-admin/includes/meta-boxes.php */
+						$actions['view'] = '<a href="' . esc_url( apply_filters( 'preview_post_link', set_url_scheme( add_query_arg( 'preview', 'true', get_permalink( $post->ID ) ) ) ) ) . '" title="' . esc_attr( sprintf( __( 'Preview &#8220;%s&#8221;' ), $title ) ) . '" rel="permalink">' . __( 'Preview' ) . '</a>';
+					}
+				} elseif ( 'trash' != $post->post_status ) {
+					$actions['view'] = '<a href="' . get_permalink( $post->ID ) . '" title="' . esc_attr( sprintf( __( 'View &#8220;%s&#8221;' ), $title ) ) . '" rel="permalink">' . __( 'View' ) . '</a>';
+				}
+			}
+
+			if ( is_post_type_hierarchical( $post->post_type ) ) {
+
+				/**
+				 * Filter the array of row action links on the Pages list table.
+				 *
+				 * The filter is evaluated only for hierarchical post types.
+				 *
+				 * @since 2.8.0
+				 *
+				 * @param array   $actions An array of row action links. Defaults are
+				 *                         'Edit', 'Quick Edit', 'Restore, 'Trash',
+				 *                         'Delete Permanently', 'Preview', and 'View'.
+				 * @param WP_Post $post    The post object.
+				 */
+				$actions = apply_filters( 'page_row_actions', $actions, $post );
+			} else {
+
+				/**
+				 * Filter the array of row action links on the Posts list table.
+				 *
+				 * The filter is evaluated only for non-hierarchical post types.
+				 *
+				 * @since 2.8.0
+				 *
+				 * @param array   $actions An array of row action links. Defaults are
+				 *                         'Edit', 'Quick Edit', 'Restore, 'Trash',
+				 *                         'Delete Permanently', 'Preview', and 'View'.
+				 * @param WP_Post $post    The post object.
+				 */
+				$actions = apply_filters( 'post_row_actions', $actions, $post );
+			}
+
+			return( $this->row_actions( $actions ) );
+		}
+	}
+
 	/**
 	 * Outputs the hidden row displayed when inline editing
 	 *
Index: wp-admin/includes/class-wp-media-list-table.php
===================================================================
--- wp-admin/includes/class-wp-media-list-table.php	(revision 28046)
+++ wp-admin/includes/class-wp-media-list-table.php	(working copy)
@@ -212,9 +212,13 @@
 	<tr id='post-<?php echo $post->ID; ?>' class='<?php echo trim( $alt . ' author-' . $post_owner . ' status-' . $post->post_status ); ?>'>
 <?php
 
-list( $columns, $hidden ) = $this->get_column_info();
+list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info();
 foreach ( $columns as $column_name => $column_display_name ) {
-	$class = "class='$column_name column-$column_name'";
+	if( $primary == $column_name ) {
+		$class = "class='$column_name column-$column_name has-row-actions'";
+	} else {
+		$class = "class='$column_name column-$column_name'";
+	}
 
 	$style = '';
 	if ( in_array( $column_name, $hidden ) )
@@ -275,7 +279,9 @@
 ?>
 			</p>
 <?php
-		echo $this->row_actions( $this->_get_row_actions( $post, $att_title ) );
+		if( $primary == $column_name ) {
+			echo $this->row_actions( $this->_get_row_actions( $post, $att_title ) );
+		}
 ?>
 		</td>
 <?php
@@ -288,14 +294,21 @@
 				esc_url( add_query_arg( array( 'author' => get_the_author_meta('ID') ), 'upload.php' ) ),
 				get_the_author()
 			);
+		if( $primary == $column_name ) {
+			echo $this->row_actions( $this->_get_row_actions( $post, $att_title ) );
+		}
 		?></td>
 <?php
 		break;
 
 	case 'desc':
 ?>
-		<td <?php echo $attributes ?>><?php echo has_excerpt() ? $post->post_excerpt : ''; ?></td>
+		<td <?php echo $attributes ?>><?php echo has_excerpt() ? $post->post_excerpt : ''; ?>
 <?php
+		if( $primary == $column_name ) {
+			echo $this->row_actions( $this->_get_row_actions( $post, $att_title ) );
+		}
+		echo '</td>';
 		break;
 
 	case 'date':
@@ -314,8 +327,12 @@
 			}
 		}
 ?>
-		<td <?php echo $attributes ?>><?php echo $h_time ?></td>
+		<td <?php echo $attributes ?>><?php echo $h_time ?>
 <?php
+		if( $primary == $column_name ) {
+			echo $this->row_actions( $this->_get_row_actions( $post, $att_title ) );
+		}
+		echo '</td>';
 		break;
 
 	case 'parent':
@@ -336,7 +353,6 @@
 					echo $title;
 				} ?></strong>,
 				<?php echo get_the_time( __( 'Y/m/d' ) ); ?>
-			</td>
 <?php
 		} else {
 ?>
@@ -346,9 +362,12 @@
 					onclick="findPosts.open( 'media[]','<?php echo $post->ID ?>' ); return false;"
 					href="#the-list">
 					<?php _e( 'Attach' ); ?></a>
-			<?php } ?></td>
+			<?php } ?>
 <?php
 		}
+		if( $primary == $column_name ) {
+			echo $this->row_actions( $this->_get_row_actions( $post, $att_title ) );
+		}
 		break;
 
 	case 'comments':
@@ -362,8 +381,11 @@
 		$this->comments_bubble( $post->ID, $pending_comments );
 ?>
 			</div>
-		</td>
 <?php
+		if( $primary == $column_name ) {
+			echo $this->row_actions( $this->_get_row_actions( $post, $att_title ) );
+		}
+		echo '</td>';
 		break;
 
 	default:
@@ -396,6 +418,10 @@
 			} else {
 				echo '&#8212;';
 			}
+
+			if( $primary == $column_name ) {
+				echo $this->row_actions( $this->_get_row_actions( $post, $att_title ) );
+			}
 			echo '</td>';
 			break;
 		}
@@ -413,7 +439,11 @@
 				 * @param int    $post_id     Attachment ID.
 				 */
 			?>
-			<?php do_action( 'manage_media_custom_column', $column_name, $post->ID ); ?>
+			<?php do_action( 'manage_media_custom_column', $column_name, $post->ID );
+				if( $primary == $column_name ) {
+					echo $this->row_actions( $this->_get_row_actions( $post, $att_title ) );
+				}
+			?>
 		</td>
 <?php
 		break;
@@ -424,6 +454,10 @@
 <?php endwhile;
 	}
 
+	function get_primary_column() {
+		return( 'title' );
+	}
+
 	function _get_row_actions( $post, $att_title ) {
 		$actions = array();
 
Index: wp-admin/includes/class-wp-terms-list-table.php
===================================================================
--- wp-admin/includes/class-wp-terms-list-table.php	(revision 28046)
+++ wp-admin/includes/class-wp-terms-list-table.php	(working copy)
@@ -264,10 +264,7 @@
 
 	function column_name( $tag ) {
 		$taxonomy = $this->screen->taxonomy;
-		$tax = get_taxonomy( $taxonomy );
 
-		$default_term = get_option( 'default_' . $taxonomy );
-
 		$pad = str_repeat( '&#8212; ', max( 0, $this->level ) );
 
 		/**
@@ -289,43 +286,6 @@
 		$edit_link = esc_url( get_edit_term_link( $tag->term_id, $taxonomy, $this->screen->post_type ) );
 
 		$out = '<strong><a class="row-title" href="' . $edit_link . '" title="' . esc_attr( sprintf( __( 'Edit &#8220;%s&#8221;' ), $name ) ) . '">' . $name . '</a></strong><br />';
-
-		$actions = array();
-		if ( current_user_can( $tax->cap->edit_terms ) ) {
-			$actions['edit'] = '<a href="' . $edit_link . '">' . __( 'Edit' ) . '</a>';
-			$actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __( 'Quick&nbsp;Edit' ) . '</a>';
-		}
-		if ( current_user_can( $tax->cap->delete_terms ) && $tag->term_id != $default_term )
-			$actions['delete'] = "<a class='delete-tag' href='" . wp_nonce_url( "edit-tags.php?action=delete&amp;taxonomy=$taxonomy&amp;tag_ID=$tag->term_id", 'delete-tag_' . $tag->term_id ) . "'>" . __( 'Delete' ) . "</a>";
-		if ( $tax->public )
-			$actions['view'] = '<a href="' . get_term_link( $tag ) . '">' . __( 'View' ) . '</a>';
-
-		/**
-		 * Filter the action links displayed for each term in the Tags list table.
-		 *
-		 * @since 2.8.0
-		 * @deprecated 3.0.0 Use {$taxonomy}_row_actions instead.
-		 *
-		 * @param array  $actions An array of action links to be displayed. Default
-		 *                        'Edit', 'Quick Edit', 'Delete', and 'View'.
-		 * @param object $tag     Term object.
-		 */
-		$actions = apply_filters( 'tag_row_actions', $actions, $tag );
-
-		/**
-		 * Filter the action links displayed for each term in the terms list table.
-		 *
-		 * The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug.
-		 *
-		 * @since 3.0.0
-		 *
-		 * @param array  $actions An array of action links to be displayed. Default
-		 *                        'Edit', 'Quick Edit', 'Delete', and 'View'.
-		 * @param object $tag     Term object.
-		 */
-		$actions = apply_filters( "{$taxonomy}_row_actions", $actions, $tag );
-
-		$out .= $this->row_actions( $actions );
 		$out .= '<div class="hidden" id="inline_' . $qe_data->term_id . '">';
 		$out .= '<div class="name">' . $qe_data->name . '</div>';
 
@@ -392,6 +352,58 @@
 		return apply_filters( "manage_{$this->screen->taxonomy}_custom_column", '', $column_name, $tag->term_id );
 	}
 
+	function get_primary_column() {
+		return( 'name' );
+	}
+
+	function handle_actions( $tag, $column_name, $primary ) {
+		$taxonomy = $this->screen->taxonomy;
+		$tax = get_taxonomy( $taxonomy );
+
+		$default_term = get_option( 'default_' . $taxonomy );
+
+		$pad = str_repeat( '&#8212; ', max( 0, $this->level ) );
+		$edit_link = esc_url( get_edit_term_link( $tag->term_id, $taxonomy, $this->screen->post_type ) );
+		if( $primary == $column_name ) {
+			$actions = array();
+			if ( current_user_can( $tax->cap->edit_terms ) ) {
+				$actions['edit'] = '<a href="' . $edit_link . '">' . __( 'Edit' ) . '</a>';
+				$actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __( 'Quick&nbsp;Edit' ) . '</a>';
+			}
+			if ( current_user_can( $tax->cap->delete_terms ) && $tag->term_id != $default_term )
+				$actions['delete'] = "<a class='delete-tag' href='" . wp_nonce_url( "edit-tags.php?action=delete&amp;taxonomy=$taxonomy&amp;tag_ID=$tag->term_id", 'delete-tag_' . $tag->term_id ) . "'>" . __( 'Delete' ) . "</a>";
+			if ( $tax->public )
+				$actions['view'] = '<a href="' . get_term_link( $tag ) . '">' . __( 'View' ) . '</a>';
+
+			/**
+			 * Filter the action links displayed for each term in the Tags list table.
+			 *
+			 * @since 2.8.0
+			 * @deprecated 3.0.0 Use {$taxonomy}_row_actions instead.
+			 *
+			 * @param array  $actions An array of action links to be displayed. Default
+			 *                        'Edit', 'Quick Edit', 'Delete', and 'View'.
+			 * @param object $tag     Term object.
+			 */
+			$actions = apply_filters( 'tag_row_actions', $actions, $tag );
+
+			/**
+			 * Filter the action links displayed for each term in the terms list table.
+			 *
+			 * The dynamic portion of the hook name, $taxonomy, refers to the taxonomy slug.
+			 *
+			 * @since 3.0.0
+			 *
+			 * @param array  $actions An array of action links to be displayed. Default
+			 *                        'Edit', 'Quick Edit', 'Delete', and 'View'.
+			 * @param object $tag     Term object.
+			 */
+			$actions = apply_filters( "{$taxonomy}_row_actions", $actions, $tag );
+
+			return( $this->row_actions( $actions ) );
+		}
+	}
+
 	/**
 	 * Outputs the hidden row displayed when inline editing
 	 *
Index: wp-admin/includes/class-wp-users-list-table.php
===================================================================
--- wp-admin/includes/class-wp-users-list-table.php	(revision 28046)
+++ wp-admin/includes/class-wp-users-list-table.php	(working copy)
@@ -381,7 +381,6 @@
 			 * @param WP_User $user_object WP_User object for the currently-listed user.
 			 */
 			$actions = apply_filters( 'user_row_actions', $actions, $user_object );
-			$edit .= $this->row_actions( $actions );
 
 			// Set up the checkbox ( because the user is editable, otherwise it's empty )
 			$checkbox = '<label class="screen-reader-text" for="cb-select-' . $user_object->ID . '">' . sprintf( __( 'Select %s' ), $user_object->user_login ) . '</label>'
@@ -395,10 +394,14 @@
 
 		$r = "<tr id='user-$user_object->ID'$style>";
 
-		list( $columns, $hidden ) = $this->get_column_info();
+		list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info();
 
 		foreach ( $columns as $column_name => $column_display_name ) {
-			$class = "class=\"$column_name column-$column_name\"";
+			if( $primary == $column_name ) {
+				$class = "class=\"$column_name column-$column_name has-row-actions\"";
+			} else {
+				$class = "class=\"$column_name column-$column_name\"";
+			}
 
 			$style = '';
 			if ( in_array( $column_name, $hidden ) )
@@ -411,16 +414,16 @@
 					$r .= "<th scope='row' class='check-column'>$checkbox</th>";
 					break;
 				case 'username':
-					$r .= "<td $attributes>$avatar $edit</td>";
+					$r .= "<td $attributes>$avatar $edit";
 					break;
 				case 'name':
-					$r .= "<td $attributes>$user_object->first_name $user_object->last_name</td>";
+					$r .= "<td $attributes>$user_object->first_name $user_object->last_name";
 					break;
 				case 'email':
-					$r .= "<td $attributes><a href='mailto:$email' title='" . esc_attr( sprintf( __( 'E-mail: %s' ), $email ) ) . "'>$email</a></td>";
+					$r .= "<td $attributes><a href='mailto:$email' title='" . esc_attr( sprintf( __( 'E-mail: %s' ), $email ) ) . "'>$email</a>";
 					break;
 				case 'role':
-					$r .= "<td $attributes>$role_name</td>";
+					$r .= "<td $attributes>$role_name";
 					break;
 				case 'posts':
 					$attributes = 'class="posts column-posts num"' . $style;
@@ -432,7 +435,6 @@
 					} else {
 						$r .= 0;
 					}
-					$r .= "</td>";
 					break;
 				default:
 					$r .= "<td $attributes>";
@@ -449,9 +451,18 @@
 					$r .= apply_filters( 'manage_users_custom_column', '', $column_name, $user_object->ID );
 					$r .= "</td>";
 			}
+
+			if( $primary == $column_name ) {
+				$r .= $this->row_actions( $actions );
+			}
+			$r .= '</td>';
 		}
 		$r .= '</tr>';
 
 		return $r;
 	}
+
+	function get_primary_column() {
+		return( 'username' );
+	}
 }
Index: wp-admin/includes/class-wp-list-table.php
===================================================================
--- wp-admin/includes/class-wp-list-table.php	(revision 28046)
+++ wp-admin/includes/class-wp-list-table.php	(working copy)
@@ -625,6 +625,15 @@
 	}
 
 	/**
+	 * Get name of primary column.
+	 *
+	 * @return string
+	 */
+	function get_primary_column() {
+		return( '' );
+	}
+
+	/**
 	 * Get a list of all, hidden and sortable columns, with filter applied
 	 *
 	 * @since 3.1.0
@@ -664,7 +673,8 @@
 			$sortable[$id] = $data;
 		}
 
-		$this->_column_headers = array( $columns, $hidden, $sortable );
+		$primary = $this->get_primary_column();
+		$this->_column_headers = array( $columns, $hidden, $sortable, $primary );
 
 		return $this->_column_headers;
 	}
@@ -885,10 +895,14 @@
 	 * @param object $item The current item
 	 */
 	function single_row_columns( $item ) {
-		list( $columns, $hidden ) = $this->get_column_info();
+		list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info();
 
 		foreach ( $columns as $column_name => $column_display_name ) {
-			$class = "class='$column_name column-$column_name'";
+			if ( $primary == $column_name ) {
+				$class = "class='$column_name column-$column_name has-row-actions'";
+			} else {
+				$class = "class='$column_name column-$column_name'";
+			}
 
 			$style = '';
 			if ( in_array( $column_name, $hidden ) )
@@ -904,6 +918,7 @@
 			elseif ( method_exists( $this, 'column_' . $column_name ) ) {
 				echo "<td $attributes>";
 				echo call_user_func( array( $this, 'column_' . $column_name ), $item );
+				echo $this->handle_actions( $item, $column_name, $primary );
 				echo "</td>";
 			}
 			else {
@@ -915,6 +930,15 @@
 	}
 
 	/**
+	 * Generate and display row actions links
+	 */
+	function handle_actions( $post, $column_name, $primary ) {
+		if( $primary == $column_name ) {
+				return( '' );
+		}
+	}
+
+	/**
 	 * Handle an incoming ajax request (called from admin-ajax.php)
 	 *
 	 * @since 3.1.0
Index: wp-admin/includes/class-wp-ms-themes-list-table.php
===================================================================
--- wp-admin/includes/class-wp-ms-themes-list-table.php	(revision 28046)
+++ wp-admin/includes/class-wp-ms-themes-list-table.php	(working copy)
@@ -190,6 +190,10 @@
 		);
 	}
 
+	function get_primary_column() {
+		return( 'name' );
+	}
+
 	function get_views() {
 		global $totals, $status;
 
@@ -343,7 +347,7 @@
 
 		echo "<tr id='$id' class='$class'>";
 
-		list( $columns, $hidden ) = $this->get_column_info();
+		list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info();
 
 		foreach ( $columns as $column_name => $column_display_name ) {
 			$style = '';
@@ -356,7 +360,7 @@
 					break;
 				case 'name':
 					echo "<td class='theme-title'$style><strong>" . $theme->display('Name') . "</strong>";
-					echo $this->row_actions( $actions, true );
+					if( $primary == $column_name ) echo $this->row_actions( $actions, true );
 					echo "</td>";
 					break;
 				case 'description':
@@ -394,7 +398,9 @@
 					$theme_meta = apply_filters( 'theme_row_meta', $theme_meta, $stylesheet, $theme, $status );
 					echo implode( ' | ', $theme_meta );
 
-					echo "</div></td>";
+					echo "</div>";
+					if( $primary == $column_name ) echo $this->row_actions( $actions, true );
+					echo "</td>";
 					break;
 
 				default:
@@ -410,6 +416,7 @@
 					 * @param WP_Theme $theme       Current WP_Theme object.
 					 */
 					do_action( 'manage_themes_custom_column', $column_name, $stylesheet, $theme );
+					if( $primary == $column_name ) echo $this->row_actions( $actions, true );
 					echo "</td>";
 			}
 		}
