diff --git a/wp-admin/includes/misc.php b/wp-admin/includes/misc.php index bdd1df2867..df307e4e79 100644 --- a/wp-admin/includes/misc.php +++ b/wp-admin/includes/misc.php @@ -1649,7 +1649,8 @@ final class WP_Privacy_Policy_Content { '
' . __( 'In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information.' ) . '
' . '' . __( 'The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number.' ) . '
' . - '' . __( 'Our website address is: $1%s.' ) . '
' . + /* translators: %s Site URL */ + '' . sprintf( __( 'Our website address is: %s.' ), get_bloginfo( 'url', 'display' ) ) . '
' . '' . __( 'In this section you should note what personal data you collect from users and site visitors. This may include transactional data, such as purchase information; technical data, such as information about cookies; and personal data, such as user account information.' ) . '
' . @@ -1722,14 +1723,12 @@ final class WP_Privacy_Policy_Content { '' . __( 'If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here.' ) . '
'; // End of the suggested policy text. - $content = str_replace( '$1%s', get_bloginfo( 'url', 'display' ), $content ); - /** * Filters the default content suggested for inclusion in a privacy policy. * * @since 4.9.6 * - * @param $content string The defauld policy content. + * @param $content string The default policy content. */ return apply_filters( 'wp_get_default_privacy_policy_content', $content ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index f825a89725..23b4e99dce 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-43148'; +$wp_version = '5.0-alpha-43150'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.