From 4de03a542e91b92db01e0c5be4583541dcfbd278 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 11 Apr 2019 20:14:22 +0000 Subject: [PATCH] Networks and Sites: Use numbered placeholder in a `mailto:` link in `ms_site_check()`. Props diddledan. Fixes #46849. git-svn-id: https://develop.svn.wordpress.org/trunk@45162 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/ms-load.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/ms-load.php b/src/wp-includes/ms-load.php index 3133d2473c..6c698fcdde 100644 --- a/src/wp-includes/ms-load.php +++ b/src/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 ) ) ); }