home_url() returns a value, needs to be echoed in twentyten header and footer. See #9015

git-svn-id: http://svn.automattic.com/wordpress/trunk@13138 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-02-14 06:12:12 +00:00
parent db0e494344
commit ea5e854684
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
<?php get_sidebar( 'footer' ); ?>
<div id="site-info">
<a href="<?php home_url() ?>/" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
<a href="<?php echo home_url() ?>/" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
</div>
<div id="site-generator">

View File

@ -39,7 +39,7 @@
<div id="masthead">
<div id="branding">
<div id="site-title"><span><a href="<?php home_url(); ?>/" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></div>
<div id="site-title"><span><a href="<?php echo home_url(); ?>/" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span></div>
<div id="site-description"><?php bloginfo( 'description' ); ?></div>
<?php