From 13889763afc10858d64224fe4634d03683f490ea Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Fri, 18 Sep 2015 18:30:26 +0000 Subject: [PATCH] Don't use HTML tags in translation strings in `wp-admin/includes/update.php`. Props ramiy. Fixes #31855. git-svn-id: https://develop.svn.wordpress.org/trunk@34296 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/update.php b/src/wp-admin/includes/update.php index e3f363c16e..6661d44afd 100644 --- a/src/wp-admin/includes/update.php +++ b/src/wp-admin/includes/update.php @@ -203,7 +203,7 @@ function core_update_footer( $msg = '' ) { return sprintf( __( 'You are using a development version (%1$s). Cool! Please stay updated.' ), get_bloginfo( 'version', 'display' ), network_admin_url( 'update-core.php' ) ); case 'upgrade' : - return sprintf( ''.__( 'Get Version %2$s' ).'', network_admin_url( 'update-core.php' ), $cur->current); + return '' . sprintf( __( 'Get Version %s' ), $cur->current ) . ''; case 'latest' : default :