From 426944c74465d890b18a5a390d07fcc3b1147523 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 13 Oct 2015 01:49:26 +0000 Subject: [PATCH] Replace `get_bloginfo( 'wpurl' )` with `site_url()` in `rsd_link()`. Ensure the correct scheme is used for the `application/rsd+xml` link URL. Props johnbillion. See #34280. Built from https://develop.svn.wordpress.org/trunk@35105 git-svn-id: http://core.svn.wordpress.org/trunk@35070 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/general-template.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index f8ee2b7056..23525b5059 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -2445,7 +2445,7 @@ function feed_links_extra( $args = array() ) { * @since 2.0.0 */ function rsd_link() { - echo '\n"; + echo '' . "\n"; } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index dbee3f418b..5541791e77 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35104'; +$wp_version = '4.4-alpha-35105'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.