From 1a04fde0126f4d57212333b74a2145423e1927aa Mon Sep 17 00:00:00 2001
From: John Blackbourn
Date: Mon, 12 Oct 2015 22:52:24 +0000
Subject: [PATCH] Correct two escaping functions used in
`wp-includes/embed-template.php`.
See #32522
Built from https://develop.svn.wordpress.org/trunk@35086
git-svn-id: http://core.svn.wordpress.org/trunk@35051 1a063a9b-81f0-0310-95a4-ce76da25c4cd
---
wp-includes/embed-template.php | 4 ++--
wp-includes/version.php | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/wp-includes/embed-template.php b/wp-includes/embed-template.php
index f9cc3a2e13..0fc245276e 100644
--- a/wp-includes/embed-template.php
+++ b/wp-includes/embed-template.php
@@ -200,7 +200,7 @@ if ( have_posts() ) :
-
+
@@ -247,7 +247,7 @@ else :
'%s',
esc_url( home_url() ),
esc_url( $site_icon_url ),
- esc_attr( get_bloginfo( 'name' ) )
+ esc_html( get_bloginfo( 'name' ) )
);
?>
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 2f396aa707..98b24de4f3 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.4-alpha-35085';
+$wp_version = '4.4-alpha-35086';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.