Administration: Ensure the new Privacy Policy screen appears when within the Network Admin and User Admin.

Props hnle, dd32
Fixes #42443

Built from https://develop.svn.wordpress.org/trunk@42116


git-svn-id: http://core.svn.wordpress.org/trunk@41945 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2017-11-06 18:17:54 +00:00
parent 65c1468ff5
commit b8de3548d3
3 changed files with 27 additions and 1 deletions

View File

@ -0,0 +1,13 @@
<?php
/**
* Network Privacy administration panel.
*
* @package WordPress
* @subpackage Multisite
* @since 4.9.0
*/
/** Load WordPress Administration Bootstrap */
require_once( dirname( __FILE__ ) . '/admin.php' );
require( ABSPATH . 'wp-admin/privacy.php' );

13
wp-admin/user/privacy.php Normal file
View File

@ -0,0 +1,13 @@
<?php
/**
* User Dashboard Privacy administration panel.
*
* @package WordPress
* @subpackage Administration
* @since 4.9.0
*/
/** Load WordPress Administration Bootstrap */
require_once( dirname( __FILE__ ) . '/admin.php' );
require( ABSPATH . 'wp-admin/privacy.php' );

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.9-RC1-42115';
$wp_version = '4.9-RC1-42116';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.