From c0c03057495fa714f21ef6fd6e7c6d0d4c3f9afc Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 13 Oct 2015 01:48:32 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@35105 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/general-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/general-template.php b/src/wp-includes/general-template.php index f8ee2b7056..23525b5059 100644 --- a/src/wp-includes/general-template.php +++ b/src/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"; } /**