From 8f21b4c6078b856bc61abddf6b26cabaadd7327f Mon Sep 17 00:00:00 2001 From: Weston Ruter Date: Thu, 28 Jun 2018 02:28:33 +0000 Subject: [PATCH] Privacy: Only link to menus panel in Customizer if selected privacy page can be accessed there. Props dlh. Fixes #44117. Built from https://develop.svn.wordpress.org/trunk@43343 git-svn-id: http://core.svn.wordpress.org/trunk@43171 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/privacy.php | 29 ++++++++++++++++++++++++----- wp-includes/version.php | 2 +- 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/wp-admin/privacy.php b/wp-admin/privacy.php index 991ad72eff..9c360dd18f 100644 --- a/wp-admin/privacy.php +++ b/wp-admin/privacy.php @@ -22,14 +22,33 @@ if ( ! empty( $action ) ) { $privacy_policy_page_id = isset( $_POST['page_for_privacy_policy'] ) ? (int) $_POST['page_for_privacy_policy'] : 0; update_option( 'wp_page_for_privacy_policy', $privacy_policy_page_id ); + $privacy_page_updated_message = __( 'Privacy policy page updated successfully.' ); + + if ( $privacy_policy_page_id ) { + /* + * Don't always link to the menu customizer: + * + * - Unpublished pages can't be selected by default. + * - `WP_Customize_Nav_Menus::__construct()` checks the user's capabilities. + * - Themes might not "officially" support menus. + */ + if ( + 'publish' === get_post_status( $privacy_policy_page_id ) + && current_user_can( 'edit_theme_options' ) + && current_theme_supports( 'menus' ) + ) { + $privacy_page_updated_message = sprintf( + /* translators: %s: URL to Customizer -> Menus */ + __( 'Privacy policy page updated successfully. Remember to update your menus!' ), + esc_url( add_query_arg( 'autofocus[panel]', 'nav_menus', admin_url( 'customize.php' ) ) ) + ); + } + } + add_settings_error( 'page_for_privacy_policy', 'page_for_privacy_policy', - sprintf( - /* translators: %s: URL to Customizer -> Menus */ - __( 'Privacy policy page updated successfully. Remember to update your menus!' ), - 'customize.php?autofocus[panel]=nav_menus' - ), + $privacy_page_updated_message, 'updated' ); } elseif ( 'create-privacy-page' === $action ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 459e6cc264..9fb27ae637 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-43341'; +$wp_version = '5.0-alpha-43343'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.