Changeset 43153 for branches/4.9
- Timestamp:
- 05/03/2018 06:41:18 PM (6 years ago)
- Location:
- branches/4.9
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.9
-
branches/4.9/src/wp-admin/menu.php
r43152 r43153 257 257 $submenu['options-general.php'][30] = array(__('Media'), 'manage_options', 'options-media.php'); 258 258 $submenu['options-general.php'][40] = array(__('Permalinks'), 'manage_options', 'options-permalink.php'); 259 $submenu['options-general.php'][45] = array( __( 'Privacy' ), 'manage_ options', 'privacy.php' );259 $submenu['options-general.php'][45] = array( __( 'Privacy' ), 'manage_privacy_policy', 'privacy.php' ); 260 260 261 261 $_wp_last_utility_menu = 80; // The index of the last top-level menu in the utility menu group -
branches/4.9/src/wp-admin/privacy.php
r43152 r43153 10 10 require_once( dirname( __FILE__ ) . '/admin.php' ); 11 11 12 if ( ! current_user_can( 'manage_ options' ) ) {12 if ( ! current_user_can( 'manage_privacy_policy' ) ) { 13 13 wp_die( __( 'Sorry, you are not allowed to manage privacy on this site.' ) ); 14 14 } -
branches/4.9/src/wp-includes/capabilities.php
r43111 r43153 542 542 case 'export_others_personal_data': 543 543 case 'erase_others_personal_data': 544 case 'manage_privacy_policy': 544 545 $caps[] = is_multisite() ? 'manage_network' : 'manage_options'; 545 546 break; -
branches/4.9/tests/phpunit/tests/user/capabilities.php
r43111 r43153 239 239 'export_others_personal_data' => array( 'administrator' ), 240 240 'erase_others_personal_data' => array( 'administrator' ), 241 'manage_privacy_policy' => array( 'administrator' ), 241 242 242 243 'edit_categories' => array( 'administrator', 'editor' ), … … 272 273 'export_others_personal_data' => array( '' ), 273 274 'erase_others_personal_data' => array( '' ), 275 'manage_privacy_policy' => array(), 274 276 275 277 'customize' => array( 'administrator' ),
Note: See TracChangeset
for help on using the changeset viewer.