Changeset 14443
- Timestamp:
- 05/04/2010 05:13:11 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/custom-background.php
r14404 r14443 141 141 <?php if ( !empty($this->updated) ) { ?> 142 142 <div id="message" class="updated"> 143 <p><?php printf( __('Background updated. <a href="%s">Visit your site</a> to see how it looks.'), home_url()); ?></p>143 <p><?php printf( __( 'Background updated. <a href="%s">Visit your site</a> to see how it looks.' ), home_url( '/' ) ); ?></p> 144 144 </div> 145 145 <?php } -
trunk/wp-admin/custom-header.php
r14315 r14443 374 374 if ( isset($_GET['updated']) && $_GET['updated'] ) { ?> 375 375 <div id="message" class="updated"> 376 <p><?php printf( __('Header updated. <a href="%s">Visit your site</a> to see how it looks.'), home_url()); ?></p>376 <p><?php printf( __( 'Header updated. <a href="%s">Visit your site</a> to see how it looks.' ), home_url( '/' ) ); ?></p> 377 377 </div> 378 378 <?php } -
trunk/wp-admin/themes.php
r14425 r14443 55 55 <div id="message2" class="updated"><p><?php printf( __('New theme activated. This theme supports widgets, please visit the <a href="%s">widgets settings</a> screen to configure them.'), admin_url( 'widgets.php' ) ); ?></p></div><?php 56 56 } else { ?> 57 <div id="message2" class="updated"><p><?php printf( __( 'New theme activated. <a href="%s">Visit site</a>'), home_url( '/' ) ); ?></p></div><?php57 <div id="message2" class="updated"><p><?php printf( __( 'New theme activated. <a href="%s">Visit site</a>' ), home_url( '/' ) ); ?></p></div><?php 58 58 } 59 59 elseif ( isset($_GET['deleted']) ) : ?> -
trunk/wp-includes/post-template.php
r14360 r14443 839 839 if ( is_front_page() && !is_paged() ) 840 840 $class = 'class="current_page_item"'; 841 $menu .= '<li ' . $class . '><a href="' . home_url( ) . '" title="' . esc_attr($text) . '">' . $args['link_before'] . $text . $args['link_after'] . '</a></li>';841 $menu .= '<li ' . $class . '><a href="' . home_url( '/' ) . '" title="' . esc_attr($text) . '">' . $args['link_before'] . $text . $args['link_after'] . '</a></li>'; 842 842 // If the front page is a page, add it to the exclude list 843 843 if (get_option('show_on_front') == 'page') {
Note: See TracChangeset
for help on using the changeset viewer.