Twenty Twenty: Remove redundant echo for bloginfo() call in footer.php.

Props acosmin.
Merges [46849] to the 5.3 branch.
Fixes #48918.
Built from https://develop.svn.wordpress.org/branches/5.3@46850


git-svn-id: http://core.svn.wordpress.org/branches/5.3@46650 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-12-09 15:02:04 +00:00
parent 06ebac2233
commit a590a590a3
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@
_x( 'Y', 'copyright date format', 'twentytwenty' )
);
?>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php echo bloginfo( 'name' ); ?></a>
<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a>
</p><!-- .footer-copyright -->
<p class="powered-by-wordpress">

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.3.1-alpha-46848';
$wp_version = '5.3.1-alpha-46850';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.