diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index 90b7a7d1ea..05b86f2c11 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -770,10 +770,7 @@ function get_site_icon_url( $size = 512, $url = '', $blog_id = 0 ) { } else { $size_data = array( $size, $size ); } - $url_data = wp_get_attachment_image_src( $site_icon_id, $size_data ); - if ( $url_data ) { - $url = $url_data[0]; - } + $url = wp_get_attachment_image_url( $site_icon_id, $size_data ); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 38b66c1aba..787fa3f6b4 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-beta3-35570'; +$wp_version = '4.4-beta3-35571'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.