Re-instate this code so AJAX still works

git-svn-id: https://develop.svn.wordpress.org/trunk@16966 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2010-12-15 19:04:31 +00:00
parent 424a82f2ef
commit d48ff05f70
1 changed files with 8 additions and 0 deletions

View File

@ -47,6 +47,14 @@ class WP_Posts_List_Table extends WP_List_Table {
function WP_Posts_List_Table() { function WP_Posts_List_Table() {
global $post_type_object, $post_type, $wpdb; global $post_type_object, $post_type, $wpdb;
if ( !isset( $_REQUEST['post_type'] ) )
$post_type = 'post';
elseif ( in_array( $_REQUEST['post_type'], get_post_types( array( 'show_ui' => true ) ) ) )
$post_type = $_REQUEST['post_type'];
else
wp_die( __( 'Invalid post type' ) );
$_REQUEST['post_type'] = $post_type;
$post_type_object = get_post_type_object( $post_type ); $post_type_object = get_post_type_object( $post_type );
if ( !current_user_can( $post_type_object->cap->edit_others_posts ) ) { if ( !current_user_can( $post_type_object->cap->edit_others_posts ) ) {