From 6f9aa6df0362bb4afdec25bc6e25b9d64a4dfb4c Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Thu, 20 Aug 2015 21:37:24 +0000 Subject: [PATCH] After [33666], fix broken `sprintf` cruff. See #17609. Built from https://develop.svn.wordpress.org/trunk@33672 git-svn-id: http://core.svn.wordpress.org/trunk@33639 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/edit-form-advanced.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/edit-form-advanced.php b/wp-admin/edit-form-advanced.php index 0dad59b4dd..20b23b1890 100644 --- a/wp-admin/edit-form-advanced.php +++ b/wp-admin/edit-form-advanced.php @@ -102,7 +102,7 @@ if ( $viewable ) { ); // View post link. - $view_post_html = sprintf( ' ">%', + $view_post_html = sprintf( ' %s', esc_url( $permalink ), __( 'View post' ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index a5af4ccbd9..8b72bf9b27 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-33671'; +$wp_version = '4.4-alpha-33672'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.