Ticket #20175: trash-patch.patch
| File trash-patch.patch, 811 bytes (added by , 13 years ago) |
|---|
-
wp-admin/includes/class-wp-posts-list-table.php
185 185 $actions['untrash'] = __( 'Restore' ); 186 186 else 187 187 $actions['edit'] = __( 'Edit' ); 188 if (current_user_can( get_post_type_object($this->screen->post_type)->cap->delete_posts)) { 189 if ( $this->is_trash || !EMPTY_TRASH_DAYS ) 190 $actions['delete'] = __( 'Delete Permanently' ); 191 else 192 $actions['trash'] = __( 'Move to Trash' ); 188 193 189 if ( $this->is_trash || !EMPTY_TRASH_DAYS ) 190 $actions['delete'] = __( 'Delete Permanently' ); 191 else 192 $actions['trash'] = __( 'Move to Trash' ); 194 } 193 195 194 196 return $actions; 195 197 }