Changeset 3134
- Timestamp:
- 11/17/2005 10:10:10 AM (19 years ago)
- Location:
- trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/post.php
r3132 r3134 309 309 ?> 310 310 <?php if ( isset($_GET['posted']) ) : ?> 311 <div id="message" class="updated fade"><p><?php printf(__('Post saved. <a href="%s">View site »</a>'), get_bloginfo('home') ); ?></p></div>311 <div id="message" class="updated fade"><p><?php printf(__('Post saved. <a href="%s">View site »</a>'), get_bloginfo('home') . '/'); ?></p></div> 312 312 <?php endif; ?> 313 313 <?php -
trunk/wp-admin/themes.php
r2839 r3134 27 27 <div id="message1" class="updated fade"><p><?php _e('The active theme is broken. Reverting to the default theme.'); ?></p></div> 28 28 <?php elseif ( isset($_GET['activated']) ) : ?> 29 <div id="message2" class="updated fade"><p><?php printf(__('New theme activated. <a href="%s">View site »</a>'), get_bloginfo('home') ); ?></p></div>29 <div id="message2" class="updated fade"><p><?php printf(__('New theme activated. <a href="%s">View site »</a>'), get_bloginfo('home') . '/'); ?></p></div> 30 30 <?php endif; ?> 31 31 -
trunk/wp-content/themes/classic/header.php
r2321 r3134 25 25 <body> 26 26 <div id="rap"> 27 <h1 id="header"><a href="<?php bloginfo('url'); ?> "><?php bloginfo('name'); ?></a></h1>27 <h1 id="header"><a href="<?php bloginfo('url'); ?>/"><?php bloginfo('name'); ?></a></h1> 28 28 29 29 <div id="content"> -
trunk/wp-content/themes/default/header.php
r3006 r3134 50 50 <div id="header"> 51 51 <div id="headerimg"> 52 <h1><a href="<?php echo get_settings('home'); ?> "><?php bloginfo('name'); ?></a></h1>52 <h1><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h1> 53 53 <div class="description"><?php bloginfo('description'); ?></div> 54 54 </div> -
trunk/wp-content/themes/default/searchform.php
r2884 r3134 1 <form method="get" id="searchform" action="<?php bloginfo('home'); ?> ">1 <form method="get" id="searchform" action="<?php bloginfo('home'); ?>/"> 2 2 <div><input type="text" value="<?php echo wp_specialchars($s, 1); ?>" name="s" id="s" /> 3 3 <input type="submit" id="searchsubmit" value="Search" /> -
trunk/wp-content/themes/default/sidebar.php
r2982 r3134 18 18 19 19 <?php /* If this is a yearly archive */ } elseif (is_day()) { ?> 20 <p>You are currently browsing the <a href="<?php bloginfo('home'); ?> "><?php echo bloginfo('name'); ?></a> weblog archives20 <p>You are currently browsing the <a href="<?php bloginfo('home'); ?>/"><?php echo bloginfo('name'); ?></a> weblog archives 21 21 for the day <?php the_time('l, F jS, Y'); ?>.</p> 22 22 23 23 <?php /* If this is a monthly archive */ } elseif (is_month()) { ?> 24 <p>You are currently browsing the <a href="<?php bloginfo('home'); ?> "><?php echo bloginfo('name'); ?></a> weblog archives24 <p>You are currently browsing the <a href="<?php bloginfo('home'); ?>/"><?php echo bloginfo('name'); ?></a> weblog archives 25 25 for <?php the_time('F, Y'); ?>.</p> 26 26 27 27 <?php /* If this is a yearly archive */ } elseif (is_year()) { ?> 28 <p>You are currently browsing the <a href="<?php bloginfo('home'); ?> "><?php echo bloginfo('name'); ?></a> weblog archives28 <p>You are currently browsing the <a href="<?php bloginfo('home'); ?>/"><?php echo bloginfo('name'); ?></a> weblog archives 29 29 for the year <?php the_time('Y'); ?>.</p> 30 30 31 31 <?php /* If this is a monthly archive */ } elseif (is_search()) { ?> 32 <p>You have searched the <a href="<?php echo bloginfo('home'); ?> "><?php echo bloginfo('name'); ?></a> weblog archives32 <p>You have searched the <a href="<?php echo bloginfo('home'); ?>/"><?php echo bloginfo('name'); ?></a> weblog archives 33 33 for <strong>'<?php echo wp_specialchars($s); ?>'</strong>. If you are unable to find anything in these search results, you can try one of these links.</p> 34 34 35 35 <?php /* If this is a monthly archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?> 36 <p>You are currently browsing the <a href="<?php echo bloginfo('home'); ?> "><?php echo bloginfo('name'); ?></a> weblog archives.</p>36 <p>You are currently browsing the <a href="<?php echo bloginfo('home'); ?>/"><?php echo bloginfo('name'); ?></a> weblog archives.</p> 37 37 38 38 <?php } ?> -
trunk/wp-login.php
r3120 r3134 77 77 </form> 78 78 <ul> 79 <li><a href="<?php bloginfo('home'); ?> " title="<?php _e('Are you lost?') ?>">« <?php _e('Back to blog') ?></a></li>79 <li><a href="<?php bloginfo('home'); ?>/" title="<?php _e('Are you lost?') ?>">« <?php _e('Back to blog') ?></a></li> 80 80 <?php if (get_settings('users_can_register')) : ?> 81 81 <li><a href="<?php bloginfo('wpurl'); ?>/wp-register.php"><?php _e('Register') ?></a></li> … … 240 240 </form> 241 241 <ul> 242 <li><a href="<?php bloginfo('home'); ?> " title="<?php _e('Are you lost?') ?>">« <?php _e('Back to blog') ?></a></li>242 <li><a href="<?php bloginfo('home'); ?>/" title="<?php _e('Are you lost?') ?>">« <?php _e('Back to blog') ?></a></li> 243 243 <?php if (get_settings('users_can_register')) : ?> 244 244 <li><a href="<?php bloginfo('wpurl'); ?>/wp-register.php"><?php _e('Register') ?></a></li> -
trunk/wp-register.php
r3121 r3134 114 114 </form> 115 115 <ul> 116 <li><a href="<?php bloginfo('home'); ?> " title="<?php _e('Are you lost?') ?>">« <?php _e('Back to blog') ?></a></li>116 <li><a href="<?php bloginfo('home'); ?>/" title="<?php _e('Are you lost?') ?>">« <?php _e('Back to blog') ?></a></li> 117 117 <li><a href="<?php bloginfo('wpurl'); ?>/wp-login.php"><?php _e('Login') ?></a></li> 118 118 <li><a href="<?php bloginfo('wpurl'); ?>/wp-login.php?action=lostpassword" title="<?php _e('Password Lost and Found') ?>"><?php _e('Lost your password?') ?></a></li> … … 142 142 <h2><?php _e('Registration Disabled') ?></h2> 143 143 <p><?php _e('User registration is currently not allowed.') ?><br /> 144 <a href="<?php echo get_settings('home') . '/'; ?>" title="<?php _e('Go back to the blog') ?>"><?php _e('Home') ?></a>144 <a href="<?php echo get_settings('home'); ?>/" title="<?php _e('Go back to the blog') ?>"><?php _e('Home') ?></a> 145 145 </p> 146 146 </div>
Note: See TracChangeset
for help on using the changeset viewer.