Changeset 12734 for trunk/wp-activate.php
- Timestamp:
- 01/15/2010 10:25:40 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-activate.php
r12733 r12734 8 8 require_once( ABSPATH . WPINC . '/registration.php'); 9 9 10 if ( is_object( $wp_object_cache ) )10 if ( is_object( $wp_object_cache ) ) 11 11 $wp_object_cache->cache_enabled = false; 12 12 … … 53 53 <h2><?php _e('Your account is now active!'); ?></h2> 54 54 <?php 55 if ( $signup->domain . $signup->path == '' ) {55 if ( $signup->domain . $signup->path == '' ) { 56 56 printf(__('<p class="lead-in">Your account has been activated. You may now <a href="%1$s">login</a> to the site using your chosen username of "%2$s". Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.</p>'), 'http://' . $current_site->domain . $current_site->path . 'wp-login.php', $signup->user_login, $signup->user_email, 'http://' . $current_site->domain . $current_site->path . 'wp-login.php?action=lostpassword'); 57 57 } else { … … 76 76 </div> 77 77 78 <?php if ( $url != 'http://' . $current_site->domain . $current_site->path ) : ?>78 <?php if ( $url != 'http://' . $current_site->domain . $current_site->path ) : ?> 79 79 <p class="view"><?php printf(__('Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Login</a>'), $url, $url . 'wp-login.php' ); ?></p> 80 80 <?php else: ?>
Note: See TracChangeset
for help on using the changeset viewer.