From 15f2e57a5a6c7a2f4de61f24d9f59102f138873b Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Fri, 18 Sep 2015 18:31:25 +0000 Subject: [PATCH] Don't use HTML tags in translation strings in `wp-admin/includes/update.php`. Props ramiy. Fixes #31855. Built from https://develop.svn.wordpress.org/trunk@34296 git-svn-id: http://core.svn.wordpress.org/trunk@34260 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/update.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/update.php b/wp-admin/includes/update.php index e3f363c16e..6661d44afd 100644 --- a/wp-admin/includes/update.php +++ b/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 : diff --git a/wp-includes/version.php b/wp-includes/version.php index 9729b34077..2c579148f7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34295'; +$wp_version = '4.4-alpha-34296'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.