diff --git a/wp-content/themes/twentyfifteen/inc/template-tags.php b/wp-content/themes/twentyfifteen/inc/template-tags.php index 161f0caed5..fb6004ec38 100644 --- a/wp-content/themes/twentyfifteen/inc/template-tags.php +++ b/wp-content/themes/twentyfifteen/inc/template-tags.php @@ -246,14 +246,12 @@ if ( ! function_exists( 'twentyfifteen_the_custom_logo' ) ) : /** * Displays the optional custom logo. * - * Returns early if the custom logo is not available. + * Does nothing if the custom logo is not available. * * @since Twenty Fifteen 1.5 */ function twentyfifteen_the_custom_logo() { - if ( ! function_exists( 'the_custom_logo' ) ) { - return; - } else { + if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } diff --git a/wp-includes/version.php b/wp-includes/version.php index cfb68efaae..92b8e3be2b 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-beta3-36942'; +$wp_version = '4.5-beta3-36943'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.