From 3cd984f0249d0027418e4e2894ea7bb9bd525de7 Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Wed, 25 Oct 2017 01:07:47 +0000 Subject: [PATCH] About page: The link URLs in the privacy policy shouldn't be translatable. Both of these URLs live on the main wordpress.org site, not Rosetta sites. See #40794. Built from https://develop.svn.wordpress.org/trunk@42017 git-svn-id: http://core.svn.wordpress.org/trunk@41851 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/privacy.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/privacy.php b/wp-admin/privacy.php index 2f6124a794..5e752fd13b 100644 --- a/wp-admin/privacy.php +++ b/wp-admin/privacy.php @@ -32,9 +32,9 @@ include( ABSPATH . 'wp-admin/admin-header.php' );

-

WordPress.org stats page.' ), __( 'https://wordpress.org/about/stats/' ) ); ?>

+

WordPress.org stats page.' ), 'https://wordpress.org/about/stats/' ); ?>

-

WordPress.org/about/privacy.' ), __( 'https://wordpress.org/about/privacy/' ) ); ?>

+

WordPress.org/about/privacy.' ), 'https://wordpress.org/about/privacy/' ); ?>

diff --git a/wp-includes/version.php b/wp-includes/version.php index 2fdee906ec..f9e762a1cc 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-beta3-42016'; +$wp_version = '4.9-beta3-42017'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.