mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-14 22:56:19 +01:00
Privacy: on the Privacy Settings screen change view
to preview
when a draft page is selected for the privacy policy.
Props garrett-eclipse, desrosj. Merges [43374] to the 4.9 branch. Fixes #44131. Built from https://develop.svn.wordpress.org/branches/4.9@43453 git-svn-id: http://core.svn.wordpress.org/branches/4.9@43280 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
14a11fc4db
commit
8040b247a4
@ -155,8 +155,13 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
|||||||
<p class="tools-privacy-edit"><strong>
|
<p class="tools-privacy-edit"><strong>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
/* translators: 1: URL to edit page, 2: URL to view page */
|
if ( 'publish' === get_post_status( $privacy_policy_page_id ) ) {
|
||||||
printf( __( '<a href="%1$s">Edit</a> or <a href="%2$s">view</a> your privacy policy page content.' ), $edit_href, $view_href );
|
/* translators: 1: URL to edit page, 2: URL to view page */
|
||||||
|
printf( __( '<a href="%1$s">Edit</a> or <a href="%2$s">view</a> your privacy policy page content.' ), $edit_href, $view_href );
|
||||||
|
} else {
|
||||||
|
/* translators: 1: URL to edit page, 2: URL to preview page */
|
||||||
|
printf( __( '<a href="%1$s">Edit</a> or <a href="%2$s">preview</a> your privacy policy page content.' ), $edit_href, $view_href );
|
||||||
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
</strong></p>
|
</strong></p>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.9.8-alpha-43452';
|
$wp_version = '4.9.8-alpha-43453';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user