Make WordPress Core


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

Trailing whitespace cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-activate.php

    r12689 r12733  
    1515function wpmu_activate_stylesheet() {
    1616    ?>
    17     <style type="text/css"> 
     17    <style type="text/css">
    1818        form { margin-top: 2em; }
    1919        #submit, #key { width: 90%; font-size: 24px; }
     
    3131<div id="content" class="widecolumn">
    3232    <?php if ( empty($_GET['key']) && empty($_POST['key']) ) { ?>
    33        
     33
    3434        <h2><?php _e('Activation Key Required') ?></h2>
    3535        <form name="activateform" id="activateform" method="post" action="<?php echo 'http://' . $current_site->domain . $current_site->path ?>wp-activate.php">
     
    4242            </p>
    4343        </form>
    44        
     44
    4545    <?php } else {
    4646
    4747        $key = !empty($_GET['key']) ? $_GET['key'] : $_POST['key'];
    48         $result = wpmu_activate_signup($key);       
     48        $result = wpmu_activate_signup($key);
    4949        if ( is_wp_error($result) ) {
    5050            if ( 'already_active' == $result->get_error_code() || 'blog_taken' == $result->get_error_code() ) {
     
    7070            ?>
    7171            <h2><?php _e('Your account is now active!'); ?></h2>
    72            
     72
    7373            <div id="signup-welcome">
    7474                <p><span class="h3"><?php _e('Username:'); ?></span> <?php echo $user->user_login ?></p>
    7575                <p><span class="h3"><?php _e('Password:'); ?></span> <?php echo $password; ?></p>
    7676            </div>
    77                    
     77
    7878            <?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>
     
    8181                <p class="view"><?php printf( __( 'Your account is now activated. <a href="%1$s">Login</a> or go back to the <a href="%2$s">homepage</a>.' ), 'http://' . $current_site->domain . $current_site->path . 'wp-login.php', 'http://' . $current_site->domain . $current_site->path ); ?></p>
    8282            <?php endif;
    83         }       
     83        }
    8484    }
    8585    ?>
Note: See TracChangeset for help on using the changeset viewer.