Index: wp-includes/post-template.php
===================================================================
--- wp-includes/post-template.php	(revision 24159)
+++ wp-includes/post-template.php	(working copy)
@@ -1404,8 +1404,6 @@
  * @uses get_edit_post_link()
  * @uses get_the_author_meta()
  *
- * @todo split into two functions (list, form-table) ?
- *
  * @param int|object $post_id Post ID or post object.
  * @param string|array $args See description {@link wp_parse_args()}.
  * @return null
@@ -1414,8 +1412,11 @@
 	if ( !$post = get_post( $post_id ) )
 		return;
 
-	$defaults = array( 'right' => false, 'left' => false, 'format' => 'list', 'type' => 'all' );
+	$defaults = array( 'right' => false, 'left' => false, 'format' => '', 'type' => 'all' );
 	extract( wp_parse_args( $args, $defaults ), EXTR_SKIP );
+	
+	if ( !empty( $format ) )
+		_deprecated_argument( __FUNCTION__, '3.6' );
 
 	if ( !$revisions = wp_get_post_revisions( $post->ID ) )
 		return;
@@ -1432,74 +1433,33 @@
 		$rows .= "\t<li>" . wp_post_revision_title_expanded( $revision ) . "</li>\n";
 	}
 
-	if ( 'form-table' == $format ) : ?>
+	echo "<ul class='post-revisions'>\n";
+	echo $rows;
 
-<form action="revision.php" method="get">
-
-<div class="tablenav">
-	<div class="alignleft">
-		<input type="submit" class="button-secondary" value="<?php esc_attr_e( 'Compare Revisions' ); ?>" />
-		<input type="hidden" name="action" value="diff" />
-		<input type="hidden" name="post_type" value="<?php echo esc_attr($post->post_type); ?>" />
-	</div>
-</div>
-
-<br class="clear" />
-
-<table class="widefat post-revisions" cellspacing="0" id="post-revisions">
-	<col />
-	<col />
-	<col style="width: 33%" />
-	<col style="width: 33%" />
-	<col style="width: 33%" />
-<thead>
-<tr>
-	<th scope="col"><?php /* translators: column name in revisions */ _ex( 'Old', 'revisions column name' ); ?></th>
-	<th scope="col"><?php /* translators: column name in revisions */ _ex( 'New', 'revisions column name' ); ?></th>
-	<th scope="col"><?php /* translators: column name in revisions */ _ex( 'Date Created', 'revisions column name' ); ?></th>
-	<th scope="col"><?php _e( 'Author' ); ?></th>
-	<th scope="col" class="action-links"><?php _e( 'Actions' ); ?></th>
-</tr>
-</thead>
-<tbody>
-
-<?php echo $rows; ?>
-
-</tbody>
-</table>
-
-</form>
-
-<?php
-	else :
-		echo "<ul class='post-revisions'>\n";
-		echo $rows;
-
-		// if the post was previously restored from a revision
-		// show the restore event details
-		if ( $restored_from_meta = get_post_meta( $post->ID, '_post_restored_from', true ) ) {
-			$author = get_user_by( 'id', $restored_from_meta[ 'restored_by_user' ] );
-			/* translators: revision date format, see http://php.net/date */
-			$datef = _x( 'j F, Y @ G:i:s', 'revision date format');
-			$date = date_i18n( $datef, strtotime( $restored_from_meta[ 'restored_time' ] ) );
-			$time_diff = human_time_diff( $restored_from_meta[ 'restored_time' ] ) ;
+	// if the post was previously restored from a revision
+	// show the restore event details
+	if ( $restored_from_meta = get_post_meta( $post->ID, '_post_restored_from', true ) ) {
+		$author = get_user_by( 'id', $restored_from_meta[ 'restored_by_user' ] );
+		/* translators: revision date format, see http://php.net/date */
+		$datef = _x( 'j F, Y @ G:i:s', 'revision date format');
+		$date = date_i18n( $datef, strtotime( $restored_from_meta[ 'restored_time' ] ) );
+		$time_diff = human_time_diff( $restored_from_meta[ 'restored_time' ] ) ;
+		?>
+		<hr />
+		<div id="revisions-meta-restored">
+			<?php
+			printf(
+				/* translators: restored revision details: 1: gravatar image, 2: author name, 3: time ago, 4: date */
+				__( 'Previously restored by %1$s %2$s, %3$s ago (%4$s)' ),
+				get_avatar( $author->ID, 24 ),
+				$author->display_name,
+				$time_diff,
+				$date
+			);
 			?>
-			<hr />
-			<div id="revisions-meta-restored">
-				<?php
-				printf(
-					/* translators: restored revision details: 1: gravatar image, 2: author name, 3: time ago, 4: date */
-					__( 'Previously restored by %1$s %2$s, %3$s ago (%4$s)' ),
-					get_avatar( $author->ID, 24 ),
-					$author->display_name,
-					$time_diff,
-					$date
-				);
-				?>
-			</div>
-			<?php
+		</div>
+		<?php
 		echo "</ul>";
-		}
+	}
 
-	endif;
 }
