Changeset 17392 for branches/3.1
- Timestamp:
- 02/05/2011 06:24:05 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.1/wp-admin/async-upload.php
r14816 r17392 31 31 // just fetch the detail form for that attachment 32 32 if ( isset($_REQUEST['attachment_id']) && ($id = intval($_REQUEST['attachment_id'])) && $_REQUEST['fetch'] ) { 33 $post = get_post( $id ); 34 if ( 'attachment' != $post->post_type ) 35 wp_die( __( 'Unknown post type.' ) ); 36 $post_type_object = get_post_type_object( 'attachment' ); 37 if ( ! current_user_can( $post_type_object->cap->edit_post, $id ) ) 38 wp_die( __( 'You are not allowed to edit this item.' ) ); 39 33 40 if ( 2 == $_REQUEST['fetch'] ) { 34 41 add_filter('attachment_fields_to_edit', 'media_single_attachment_fields_to_edit', 10, 2);
Note: See TracChangeset
for help on using the changeset viewer.