Changeset 45500
- Timestamp:
- 06/08/2019 12:29:59 AM (6 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/erase-personal-data.php
r45448 r45500 12 12 if ( ! current_user_can( 'erase_others_personal_data' ) || ! current_user_can( 'delete_users' ) ) { 13 13 wp_die( __( 'Sorry, you are not allowed to erase data on this site.' ) ); 14 }15 16 if ( ! class_exists( 'WP_Privacy_Data_Removal_Requests_Table' ) ) {17 require_once( ABSPATH . 'wp-admin/includes/class-wp-privacy-data-removal-requests-table.php' );18 14 } 19 15 -
trunk/src/wp-admin/export-personal-data.php
r45448 r45500 12 12 if ( ! current_user_can( 'export_others_personal_data' ) ) { 13 13 wp_die( __( 'Sorry, you are not allowed to export personal data on this site.' ) ); 14 }15 16 if ( ! class_exists( 'WP_Privacy_Data_Export_Requests_Table' ) ) {17 require_once( ABSPATH . 'wp-admin/includes/class-wp-privacy-data-export-requests-table.php' );18 14 } 19 15 -
trunk/src/wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php
r45490 r45500 13 13 14 14 /** 15 * WP_Privacy_Data_Removal_Requests_ Table class.15 * WP_Privacy_Data_Removal_Requests_List_Table class. 16 16 * 17 17 * @since 4.9.6
Note: See TracChangeset
for help on using the changeset viewer.