Make WordPress Core


Ignore:
Timestamp:
11/30/2017 11:09:33 PM (7 years ago)
Author:
pento
Message:

Code is Poetry.
WordPress' code just... wasn't.
This is now dealt with.

Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS.
Fixes #41057.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-activate.php

    r41579 r42343  
    1010
    1111/** Sets up the WordPress Environment. */
    12 require( dirname(__FILE__) . '/wp-load.php' );
     12require( dirname( __FILE__ ) . '/wp-load.php' );
    1313
    1414require( dirname( __FILE__ ) . '/wp-blog-header.php' );
    1515
    16 if ( !is_multisite() ) {
     16if ( ! is_multisite() ) {
    1717    wp_redirect( wp_registration_url() );
    1818    die();
    1919}
    2020
    21 if ( is_object( $wp_object_cache ) )
     21if ( is_object( $wp_object_cache ) ) {
    2222    $wp_object_cache->cache_enabled = false;
     23}
    2324
    2425// Fix for page title
     
    4445     *
    4546     * Fires on the {@see 'wp_head'} action.
    46     *
    47     * @since 3.0.0
    48     */
    49     do_action( 'activate_wp_head' );
     47    *
     48    * @since 3.0.0
     49    */
     50    do_action( 'activate_wp_head' );
    5051}
    5152add_action( 'wp_head', 'do_activate_header' );
     
    7475<div id="signup-content" class="widecolumn">
    7576    <div class="wp-activate-container">
    76     <?php if ( empty($_GET['key']) && empty($_POST['key']) ) { ?>
     77    <?php if ( empty( $_GET['key'] ) && empty( $_POST['key'] ) ) { ?>
    7778
    78         <h2><?php _e('Activation Key Required') ?></h2>
    79         <form name="activateform" id="activateform" method="post" action="<?php echo network_site_url('wp-activate.php'); ?>">
     79        <h2><?php _e( 'Activation Key Required' ); ?></h2>
     80        <form name="activateform" id="activateform" method="post" action="<?php echo network_site_url( 'wp-activate.php' ); ?>">
    8081            <p>
    81                 <label for="key"><?php _e('Activation Key:') ?></label>
    82                 <br /><input type="text" name="key" id="key" value="" size="50" />
     82                <label for="key"><?php _e( 'Activation Key:' ); ?></label>
     83                <br /><input type="text" name="key" id="key" value="" size="50" />
    8384            </p>
    8485            <p class="submit">
    85                 <input id="submit" type="submit" name="Submit" class="submit" value="<?php esc_attr_e('Activate') ?>" />
     86                <input id="submit" type="submit" name="Submit" class="submit" value="<?php esc_attr_e( 'Activate' ); ?>" />
    8687            </p>
    8788        </form>
    8889
    89     <?php } else {
     90    <?php
     91} else {
    9092
    91         $key = !empty($_GET['key']) ? $_GET['key'] : $_POST['key'];
    92         $result = wpmu_activate_signup( $key );
    93         if ( is_wp_error($result) ) {
    94             if ( 'already_active' == $result->get_error_code() || 'blog_taken' == $result->get_error_code() ) {
    95                 $signup = $result->get_error_data();
    96                 ?>
    97                 <h2><?php _e('Your account is now active!'); ?></h2>
     93    $key    = ! empty( $_GET['key'] ) ? $_GET['key'] : $_POST['key'];
     94    $result = wpmu_activate_signup( $key );
     95    if ( is_wp_error( $result ) ) {
     96        if ( 'already_active' == $result->get_error_code() || 'blog_taken' == $result->get_error_code() ) {
     97            $signup = $result->get_error_data();
     98            ?>
     99            <h2><?php _e( 'Your account is now active!' ); ?></h2>
    98100                <?php
    99101                echo '<p class="lead-in">';
     
    118120                }
    119121                echo '</p>';
    120             } else {
    121                 ?>
    122                 <h2><?php _e( 'An error occurred during the activation' ); ?></h2>
     122        } else {
     123            ?>
     124            <h2><?php _e( 'An error occurred during the activation' ); ?></h2>
    123125                <p><?php echo $result->get_error_message(); ?></p>
    124126                <?php
    125             }
    126         } else {
    127             $url = isset( $result['blog_id'] ) ? get_home_url( (int) $result['blog_id'] ) : '';
    128             $user = get_userdata( (int) $result['user_id'] );
    129             ?>
    130             <h2><?php _e('Your account is now active!'); ?></h2>
     127        }
     128    } else {
     129        $url = isset( $result['blog_id'] ) ? get_home_url( (int) $result['blog_id'] ) : '';
     130        $user = get_userdata( (int) $result['user_id'] );
     131        ?>
     132        <h2><?php _e( 'Your account is now active!' ); ?></h2>
    131133
    132134            <div id="signup-welcome">
    133                 <p><span class="h3"><?php _e('Username:'); ?></span> <?php echo $user->user_login ?></p>
    134                 <p><span class="h3"><?php _e('Password:'); ?></span> <?php echo $result['password']; ?></p>
     135            <p><span class="h3"><?php _e( 'Username:' ); ?></span> <?php echo $user->user_login; ?></p>
     136            <p><span class="h3"><?php _e( 'Password:' ); ?></span> <?php echo $result['password']; ?></p>
    135137            </div>
    136138
    137             <?php if ( $url && $url != network_home_url( '', 'http' ) ) :
     139            <?php
     140            if ( $url && $url != network_home_url( '', 'http' ) ) :
    138141                switch_to_blog( (int) $result['blog_id'] );
    139142                $login_url = wp_login_url();
    140143                restore_current_blog();
    141144                ?>
    142                 <p class="view"><?php
     145                <p class="view">
     146                <?php
    143147                    /* translators: 1: site URL, 2: login URL */
    144148                    printf( __( 'Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>' ), $url, esc_url( $login_url ) );
    145                 ?></p>
    146             <?php else: ?>
    147                 <p class="view"><?php
     149                ?>
     150                </p>
     151            <?php else : ?>
     152                <p class="view">
     153                <?php
    148154                    /* translators: 1: login URL, 2: network home URL */
    149155                    printf( __( 'Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.' ), network_site_url( 'wp-login.php', 'login' ), network_home_url() );
    150                 ?></p>
    151             <?php endif;
    152         }
     156                ?>
     157                </p>
     158            <?php
     159            endif;
    153160    }
     161}
    154162    ?>
    155163    </div>
     
    159167    key_input && key_input.focus();
    160168</script>
    161 <?php get_footer( 'wp-activate' );
     169<?php
     170get_footer( 'wp-activate' );
Note: See TracChangeset for help on using the changeset viewer.