Make WordPress Core


Ignore:
Timestamp:
07/05/2020 10:38:24 AM (5 years ago)
Author:
SergeyBiryukov
Message:

Posts, Post Types: Clarify some "Error in deleting" messages, use more specific strings for attachments.

Props dingo_d.
See #50546.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/upload.php

    r47808 r48312  
    157157
    158158                if ( ! wp_trash_post( $post_id ) ) {
    159                     wp_die( __( 'Error in moving to Trash.' ) );
     159                    wp_die( __( 'Error in moving the item to Trash.' ) );
    160160                }
    161161            }
     
    178178
    179179                if ( ! wp_untrash_post( $post_id ) ) {
    180                     wp_die( __( 'Error in restoring from Trash.' ) );
     180                    wp_die( __( 'Error in restoring the item from Trash.' ) );
    181181                }
    182182            }
     
    193193
    194194                if ( ! wp_delete_attachment( $post_id_del ) ) {
    195                     wp_die( __( 'Error in deleting.' ) );
     195                    wp_die( __( 'Error in deleting the attachment.' ) );
    196196                }
    197197            }
Note: See TracChangeset for help on using the changeset viewer.