]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-admin/media.php
Wordpress 2.9
[autoinstalls/wordpress.git] / wp-admin / media.php
index e31baf2d5e5bed5df3b0418efb665ba36c4010a8..09776b48512fca2785a403463fc50ecebfdce335 100644 (file)
@@ -58,9 +58,14 @@ case 'edit' :
 
        $att = get_post($att_id);
 
+       if ( empty($att->ID) ) wp_die( __('You attempted to edit an attachment that doesn’t exist. Perhaps it was deleted?') );
+       if ( $att->post_status == 'trash' ) wp_die( __('You can’t edit this attachment because it is in the Trash. Please move it out of the Trash and try again.') );
+
        add_filter('attachment_fields_to_edit', 'media_single_attachment_fields_to_edit', 10, 2);
 
        wp_enqueue_script( 'wp-ajax-response' );
+       wp_enqueue_script('image-edit');
+       wp_enqueue_style('imgareaselect');
 
        require( 'admin-header.php' );