diff --git wp-admin/admin-ajax.php wp-admin/admin-ajax.php
index cd48d43..f387036 100644
--- wp-admin/admin-ajax.php
+++ wp-admin/admin-ajax.php
@@ -598,7 +598,7 @@ case 'get-comments' :
 
 	set_current_screen( 'edit-comments' );
 
-	$wp_list_table = get_list_table('WP_Post_Comments_List_Table');
+	$wp_list_table = _get_list_table('WP_Post_Comments_List_Table');
 
 	if ( !current_user_can( 'edit_post', $post_id ) )
 		die('-1');
@@ -675,9 +675,9 @@ case 'replyto-comment' :
 			_wp_dashboard_recent_comments_row( $comment );
 		} else {
 			if ( 'single' == $_REQUEST['mode'] ) {
-				$wp_list_table = get_list_table('WP_Post_Comments_List_Table');
+				$wp_list_table = _get_list_table('WP_Post_Comments_List_Table');
 			} else {
-				$wp_list_table = get_list_table('WP_Comments_List_Table');
+				$wp_list_table = _get_list_table('WP_Comments_List_Table');
 			}
 			$wp_list_table->single_row( $comment );
 		}
@@ -713,7 +713,7 @@ case 'edit-comment' :
 	$comments_status = isset($_POST['comments_listing']) ? $_POST['comments_listing'] : '';
 
 	$checkbox = ( isset($_POST['checkbox']) && true == $_POST['checkbox'] ) ? 1 : 0;
-	$wp_list_table = get_list_table( $checkbox ? 'WP_Comments_List_Table' : 'WP_Post_Comments_List_Table' );
+	$wp_list_table = _get_list_table( $checkbox ? 'WP_Comments_List_Table' : 'WP_Post_Comments_List_Table' );
 
 	ob_start();
 		$wp_list_table->single_row( get_comment( $comment_id ) );
diff --git wp-admin/js/edit-comments.dev.js wp-admin/js/edit-comments.dev.js
index 00ebe6b..5ca2fb6 100644
--- wp-admin/js/edit-comments.dev.js
+++ wp-admin/js/edit-comments.dev.js
@@ -211,10 +211,10 @@ setCommentsList = function() {
 
 		theList.get(0).wpList.add( theExtraList.children(':eq(0)').remove().clone() );
 
-		refillTheExtraList();
+		// refillTheExtraList();
 	};
 
-	var refillTheExtraList = function(ev) {
+	/* var refillTheExtraList = function(ev) {
 		var args = $.query.get(), total_pages = listTable.get_total_pages(), per_page = $('input[name=_per_page]', '#comments-form').val();
 
 		if (args.paged > total_pages) {
@@ -236,7 +236,7 @@ setCommentsList = function() {
 		listTable.fetch_list(args, function(response) {
 			theExtraList.get(0).wpList.add( response.rows );
 		});
-	};
+	}; */
 
 	theExtraList = $('#the-extra-comment-list').wpList( { alt: '', delColor: 'none', addColor: 'none' } );
 	theList = $('#the-comment-list').wpList( { alt: '', delBefore: delBefore, dimAfter: dimAfter, delAfter: delAfter, addColor: 'none' } )
@@ -246,7 +246,7 @@ setCommentsList = function() {
 			if ( s.target.className.indexOf(':trash=1') != -1 || s.target.className.indexOf(':spam=1') != -1 )
 				$('#undo-' + id).fadeIn(300, function(){ $(this).show() });
 		});
-	$(listTable).bind('changePage', refillTheExtraList);
+	// $(listTable).bind('changePage', refillTheExtraList);
 };
 
 commentReply = {
@@ -278,9 +278,9 @@ commentReply = {
 
 		this.comments_listing = $('#comments-form > input[name="comment_status"]').val() || '';
 
-		$(listTable).bind('beforeChangePage', function(){
+		/* $(listTable).bind('beforeChangePage', function(){
 			commentReply.close();
-		});
+		}); */
 	},
 
 	addEvents : function(r) {
@@ -462,7 +462,7 @@ commentReply = {
 			.animate( { 'backgroundColor':'#CCEEBB' }, 600 )
 			.animate( { 'backgroundColor': bg }, 600 );
 
-		$.fn.wpList.process($(id));
+		// $.fn.wpList.process($(id));
 	},
 
 	error : function(r) {
diff --git wp-admin/js/theme.dev.js wp-admin/js/theme.dev.js
index 06f550f..c575429 100644
--- wp-admin/js/theme.dev.js
+++ wp-admin/js/theme.dev.js
@@ -24,7 +24,7 @@ var ThemeViewer;
 					$( '#filter-click' ).text( text + ' (' + count + ')' );
 			});
 
-			$('#filter-box :submit').unbind( 'click' ).click(function() {
+			/* $('#filter-box :submit').unbind( 'click' ).click(function() {
 				var features = [];
 				$('#filter-box :checked').each(function() {
 					features.push($(this).val());
@@ -37,7 +37,7 @@ var ThemeViewer;
 				});
 
 				return false;
-			});
+			}); */
 		}
 
 		// These are the functions we expose
diff --git wp-includes/script-loader.php wp-includes/script-loader.php
index 9253270..88e90e5 100644
--- wp-includes/script-loader.php
+++ wp-includes/script-loader.php
@@ -299,7 +299,7 @@ function wp_default_scripts( &$scripts ) {
 		$scripts->add( 'admin-custom-fields', "/wp-admin/js/custom-fields$suffix.js", array('wp-lists'), '20090106' );
 		$scripts->add_data( 'admin-custom-fields', 'group', 1 );
 
-		$scripts->add( 'admin-comments', "/wp-admin/js/edit-comments$suffix.js", array('wp-lists', 'list-table', 'jquery-ui-resizable', 'quicktags'), '20101223' );
+		$scripts->add( 'admin-comments', "/wp-admin/js/edit-comments$suffix.js", array('wp-lists', 'jquery-ui-resizable', 'quicktags'), '20101223' );
 		$scripts->add_data( 'admin-comments', 'group', 1 );
 		$scripts->localize( 'admin-comments', 'adminCommentsL10n', array(
 			'hotkeys_highlight_first' => isset($_GET['hotkeys_highlight_first']),
@@ -368,7 +368,7 @@ function wp_default_scripts( &$scripts ) {
 			'l10n_print_after' => 'try{convertEntities(wordCountL10n);}catch(e){};'
 		));
 
-		$scripts->add( 'theme', "/wp-admin/js/theme$suffix.js", array( 'thickbox', 'list-table' ), '20101123' );
+		$scripts->add( 'theme', "/wp-admin/js/theme$suffix.js", array( 'thickbox' ), '20101123' );
 		$scripts->add_data( 'theme', 'group', 1 );
 
 		$scripts->add( 'theme-preview', "/wp-admin/js/theme-preview$suffix.js", array( 'thickbox', 'jquery' ), '20100407' );
