Index: wp-admin/edit.php
===================================================================
--- wp-admin/edit.php	(revision 24117)
+++ wp-admin/edit.php	(working copy)
@@ -145,7 +145,14 @@
 	wp_redirect($sendback);
 	exit();
 } elseif ( ! empty($_REQUEST['_wp_http_referer']) ) {
-	 wp_redirect( remove_query_arg( array('_wp_http_referer', '_wpnonce'), wp_unslash($_SERVER['REQUEST_URI']) ) );
+   $last_path = wp_get_referer();
+   $current_url = remove_query_arg( array('_wp_http_referer', '_wpnonce'), wp_unslash($_SERVER['REQUEST_URI']) );
+
+   if( $current_url == "/wp/trunk/wp-admin/edit.php?s&post_status=all&post_type=post&action=-1&m=0&cat=0&paged=1&mode=list&action2=-1" ){
+     wp_redirect( $last_path );
+   } else {
+     wp_redirect( $current_url );
+   }
 	 exit;
 }
 
