Changeset 48312
- Timestamp:
- 07/05/2020 10:38:24 AM (5 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit.php
r47855 r48312 118 118 119 119 if ( ! wp_trash_post( $post_id ) ) { 120 wp_die( __( 'Error in moving t o Trash.' ) );120 wp_die( __( 'Error in moving the item to Trash.' ) ); 121 121 } 122 122 … … 141 141 142 142 if ( ! wp_untrash_post( $post_id ) ) { 143 wp_die( __( 'Error in restoring from Trash.' ) );143 wp_die( __( 'Error in restoring the item from Trash.' ) ); 144 144 } 145 145 … … 159 159 if ( 'attachment' === $post_del->post_type ) { 160 160 if ( ! wp_delete_attachment( $post_id ) ) { 161 wp_die( __( 'Error in deleting .' ) );161 wp_die( __( 'Error in deleting the attachment.' ) ); 162 162 } 163 163 } else { 164 164 if ( ! wp_delete_post( $post_id ) ) { 165 wp_die( __( 'Error in deleting .' ) );165 wp_die( __( 'Error in deleting the item.' ) ); 166 166 } 167 167 } -
trunk/src/wp-admin/post.php
r47855 r48312 259 259 260 260 if ( ! wp_trash_post( $post_id ) ) { 261 wp_die( __( 'Error in moving t o Trash.' ) );261 wp_die( __( 'Error in moving the item to Trash.' ) ); 262 262 } 263 263 … … 289 289 290 290 if ( ! wp_untrash_post( $post_id ) ) { 291 wp_die( __( 'Error in restoring from Trash.' ) );291 wp_die( __( 'Error in restoring the item from Trash.' ) ); 292 292 } 293 293 … … 313 313 $force = ( ! MEDIA_TRASH ); 314 314 if ( ! wp_delete_attachment( $post_id, $force ) ) { 315 wp_die( __( 'Error in deleting .' ) );315 wp_die( __( 'Error in deleting the attachment.' ) ); 316 316 } 317 317 } else { 318 318 if ( ! wp_delete_post( $post_id, true ) ) { 319 wp_die( __( 'Error in deleting .' ) );319 wp_die( __( 'Error in deleting the item.' ) ); 320 320 } 321 321 } -
trunk/src/wp-admin/upload.php
r47808 r48312 157 157 158 158 if ( ! wp_trash_post( $post_id ) ) { 159 wp_die( __( 'Error in moving t o Trash.' ) );159 wp_die( __( 'Error in moving the item to Trash.' ) ); 160 160 } 161 161 } … … 178 178 179 179 if ( ! wp_untrash_post( $post_id ) ) { 180 wp_die( __( 'Error in restoring from Trash.' ) );180 wp_die( __( 'Error in restoring the item from Trash.' ) ); 181 181 } 182 182 } … … 193 193 194 194 if ( ! wp_delete_attachment( $post_id_del ) ) { 195 wp_die( __( 'Error in deleting .' ) );195 wp_die( __( 'Error in deleting the attachment.' ) ); 196 196 } 197 197 }
Note: See TracChangeset
for help on using the changeset viewer.