Privacy: Remove reinstated `wp-admin/options-privacy.php` from `$_old_files`.
Fix WPCS violations in [45448]. See #43895. Built from https://develop.svn.wordpress.org/trunk@45453 git-svn-id: http://core.svn.wordpress.org/trunk@45264 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2f7f0ad901
commit
96b4570781
|
@ -536,7 +536,6 @@ $_old_files = array(
|
|||
'wp-admin/images/screenshots/twitter-embed-1.png',
|
||||
'wp-admin/images/screenshots/twitter-embed-2.png',
|
||||
'wp-admin/js/utils.js',
|
||||
'wp-admin/options-privacy.php',
|
||||
'wp-app.php',
|
||||
'wp-includes/class-wp-atom-server.php',
|
||||
'wp-includes/js/tinymce/themes/advanced/skins/wp_theme/ui.css',
|
||||
|
|
|
@ -145,11 +145,9 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
|||
);
|
||||
|
||||
$view_href = get_permalink( $privacy_policy_page_id );
|
||||
|
||||
?>
|
||||
<p class="tools-privacy-edit"><strong>
|
||||
<?php
|
||||
|
||||
if ( 'publish' === get_post_status( $privacy_policy_page_id ) ) {
|
||||
printf(
|
||||
/* translators: 1: URL to edit Privacy Policy page, 2: URL to view Privacy Policy page */
|
||||
|
@ -165,7 +163,6 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
|||
esc_url( $view_href )
|
||||
);
|
||||
}
|
||||
|
||||
?>
|
||||
</strong></p>
|
||||
<?php
|
||||
|
@ -173,7 +170,6 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
|||
?>
|
||||
<p>
|
||||
<?php
|
||||
|
||||
printf(
|
||||
/* translators: 1: Privacy Policy guide URL, 2: additional link attributes, 3: accessibility text */
|
||||
__( 'Need help putting together your new Privacy Policy page? <a href="%1$s" %2$s>Check out our guide%3$s</a> for recommendations on what content to include, along with policies suggested by your plugins and theme.' ),
|
||||
|
@ -181,7 +177,6 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
|||
'',
|
||||
''
|
||||
);
|
||||
|
||||
?>
|
||||
</p>
|
||||
|
||||
|
@ -201,7 +196,6 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
|||
</th>
|
||||
<td>
|
||||
<?php
|
||||
|
||||
$has_pages = (bool) get_posts(
|
||||
array(
|
||||
'post_type' => 'page',
|
||||
|
@ -218,7 +212,6 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
|||
<form method="post" action="">
|
||||
<input type="hidden" name="action" value="set-privacy-page" />
|
||||
<?php
|
||||
|
||||
wp_dropdown_pages(
|
||||
array(
|
||||
'name' => 'page_for_privacy_policy',
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.3-alpha-45452';
|
||||
$wp_version = '5.3-alpha-45453';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue