Make WordPress Core


Ignore:
Timestamp:
01/15/2010 10:25:40 PM (15 years ago)
Author:
ryan
Message:

Coding style cleanups

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-activate.php

    r12733 r12734  
    88require_once( ABSPATH . WPINC . '/registration.php');
    99
    10 if( is_object( $wp_object_cache ) )
     10if ( is_object( $wp_object_cache ) )
    1111    $wp_object_cache->cache_enabled = false;
    1212
     
    5353                <h2><?php _e('Your account is now active!'); ?></h2>
    5454                <?php
    55                 if( $signup->domain . $signup->path == '' ) {
     55                if ( $signup->domain . $signup->path == '' ) {
    5656                    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');
    5757                } else {
     
    7676            </div>
    7777
    78             <?php if( $url != 'http://' . $current_site->domain . $current_site->path ) : ?>
     78            <?php if ( $url != 'http://' . $current_site->domain . $current_site->path ) : ?>
    7979                <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>
    8080            <?php else: ?>
Note: See TracChangeset for help on using the changeset viewer.