Changeset 16965
- Timestamp:
- 12/15/2010 06:58:05 PM (15 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
-
edit.php (modified) (1 diff)
-
includes/class-wp-posts-list-table.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit.php
r16900 r16965 9 9 /** WordPress Administration Bootstrap */ 10 10 require_once( './admin.php' ); 11 12 if ( !isset($_GET['post_type']) ) 13 $post_type = 'post'; 14 elseif ( in_array( $_GET['post_type'], get_post_types( array('show_ui' => true ) ) ) ) 15 $post_type = $_GET['post_type']; 16 else 17 wp_die( __('Invalid post type') ); 18 19 $_GET['post_type'] = $post_type; 20 21 $post_type_object = get_post_type_object( $post_type ); 22 23 if ( !current_user_can($post_type_object->cap->edit_posts) ) 24 wp_die(__('Cheatin’ uh?')); 25 11 26 $wp_list_table = get_list_table('WP_Posts_List_Table'); 12 27 $wp_list_table->check_permissions(); -
trunk/wp-admin/includes/class-wp-posts-list-table.php
r16908 r16965 47 47 function WP_Posts_List_Table() { 48 48 global $post_type_object, $post_type, $wpdb; 49 50 if ( !isset( $_REQUEST['post_type'] ) )51 $post_type = 'post';52 elseif ( in_array( $_REQUEST['post_type'], get_post_types( array( 'show_ui' => true ) ) ) )53 $post_type = $_REQUEST['post_type'];54 else55 wp_die( __( 'Invalid post type' ) );56 $_REQUEST['post_type'] = $post_type;57 49 58 50 $post_type_object = get_post_type_object( $post_type );
Note: See TracChangeset
for help on using the changeset viewer.