Ticket #56170: typecast-postid-bulk-delete-attachments-1.diff
File typecast-postid-bulk-delete-attachments-1.diff, 473 bytes (added by , 3 years ago) |
---|
-
src/wp-admin/upload.php
194 194 wp_die( __( 'Sorry, you are not allowed to delete this item.' ) ); 195 195 } 196 196 197 if ( ! wp_delete_attachment( $post_id_del ) ) {197 if ( ! wp_delete_attachment( (int) $post_id_del ) ) { 198 198 wp_die( __( 'Error in deleting the attachment.' ) ); 199 199 } 200 200 }