From b3057080e8e155eb161a07b6feb12e44344b047f Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 11 Apr 2019 20:15:52 +0000 Subject: [PATCH] Networks and Sites: Use numbered placeholder in a `mailto:` link in `ms_site_check()`. Props diddledan. Fixes #46849. Built from https://develop.svn.wordpress.org/trunk@45162 git-svn-id: http://core.svn.wordpress.org/trunk@44971 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/ms-load.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/ms-load.php b/wp-includes/ms-load.php index 3133d2473c..6c698fcdde 100644 --- a/wp-includes/ms-load.php +++ b/wp-includes/ms-load.php @@ -109,7 +109,7 @@ function ms_site_check() { /* translators: %s: admin email link */ sprintf( __( 'This site has not been activated yet. If you are having problems activating your site, please contact %s.' ), - sprintf( '%s', $admin_email ) + sprintf( '%1$s', $admin_email ) ) ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 99ddef3a33..24da2cf0ff 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.2-beta2-45161'; +$wp_version = '5.2-beta2-45162'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.