Make WordPress Core

Ticket #28352: 28352.diff

File 28352.diff, 5.8 KB (added by MikeHansenMe, 10 years ago)

Updated based on previous patch but pass the original message into the filter

  • src/wp-activate.php

     
    8383
    8484        <?php } else {
    8585
    86                 $key = !empty($_GET['key']) ? $_GET['key'] : $_POST['key'];
     86                $key = !empty( $_GET['key'] ) ? $_GET['key'] : $_POST['key'];
    8787                $result = wpmu_activate_signup( $key );
    88                 if ( is_wp_error($result) ) {
     88                if ( is_wp_error( $result ) ) {
    8989                        if ( 'already_active' == $result->get_error_code() || 'blog_taken' == $result->get_error_code() ) {
    9090                            $signup = $result->get_error_data();
    91                                 ?>
    92                                 <h2><?php _e('Your account is now active!'); ?></h2>
    93                                 <?php
    94                                 echo '<p class="lead-in">';
     91                                $message =
     92                                "<h2>". _( 'Your account is now active!' ) . "</h2>
     93                               
     94                                <p class='lead-in'>";
    9595                                if ( $signup->domain . $signup->path == '' ) {
    96                                         printf( __('Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of &#8220;%2$s&#8221;. 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>.'), network_site_url( 'wp-login.php', 'login' ), $signup->user_login, $signup->user_email, wp_lostpassword_url() );
     96                                        $message .= sprintf( __('Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of &#8220;%2$s&#8221;. 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>.'), network_site_url( 'wp-login.php', 'login' ), $signup->user_login, $signup->user_email, wp_lostpassword_url() );
    9797                                } else {
    98                                         printf( __('Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$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="%5$s">reset your password</a>.'), 'http://' . $signup->domain, $signup->domain, $signup->user_login, $signup->user_email, wp_lostpassword_url() );
     98                                        $message .= sprintf( __('Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$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="%5$s">reset your password</a>.'), 'http://' . $signup->domain, $signup->domain, $signup->user_login, $signup->user_email, wp_lostpassword_url() );
    9999                                }
    100                                 echo '</p>';
     100                                $message = "</p>";
    101101                        } else {
    102                                 ?>
    103                                 <h2><?php _e('An error occurred during the activation'); ?></h2>
    104                                 <?php
    105                             echo '<p>'.$result->get_error_message().'</p>';
     102                                $message =
     103                                "<h2>" . _( 'An error occurred during the activation' ) . "</h2>
     104                            <p>" . $result->get_error_message() . "</p>";
    106105                        }
     106                        /**
     107                         * Filter the activation error message
     108                         *
     109                         * @since 4.2
     110                         *
     111                         * @param string $message
     112                         * @param string $url, site url
     113                         * @param object $user, WP_User object
     114                         * @param array $result, An array containing information about the activated user and/or blog
     115                         */
     116                        echo apply_filters ( 'signup_activation_error', $message, $url, $user, $result );
    107117                } else {
    108118                        $url = isset( $result['blog_id'] ) ? get_blogaddress_by_id( (int) $result['blog_id'] ) : '';
    109119                        $user = get_userdata( (int) $result['user_id'] );
    110                         ?>
    111                         <h2><?php _e('Your account is now active!'); ?></h2>
     120                        $message =
     121                        "<h2>" . _( 'Your account is now active!' ) . "</h2>
     122                        <div id='signup-welcome'>
     123                                <p><span class='h3'>" . _( 'Username:' ) . "</span> " . $user->user_login . "</p>
     124                                <p><span class='h3'>" . _( 'Password:' ) . "</span> " . $result['password'] . "</p>
     125                        </div>";
    112126
    113                         <div id="signup-welcome">
    114                                 <p><span class="h3"><?php _e('Username:'); ?></span> <?php echo $user->user_login ?></p>
    115                                 <p><span class="h3"><?php _e('Password:'); ?></span> <?php echo $result['password']; ?></p>
    116                         </div>
    117 
    118                         <?php if ( $url && $url != network_home_url( '', 'http' ) ) : ?>
    119                                 <p class="view"><?php printf( __('Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>'), $url, $url . 'wp-login.php' ); ?></p>
    120                         <?php else: ?>
    121                                 <p class="view"><?php 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() ); ?></p>
    122                         <?php endif;
     127                        if ( $url && $url != network_home_url( '', 'http' ) ) {
     128                                $message .= "<p class='view'>" . sprintf( __( 'Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>' ), $url, $url . 'wp-login.php' ) . "</p>";
     129                        } else {
     130                                $message .= "<p class='view'>" . sprintf( __( '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() ) . "</p>";
     131                        }
     132                        /**
     133                         * Filter the activation success message
     134                         *
     135                         * @since 4.2
     136                         *
     137                         * @param string $message
     138                         * @param string $url, site url
     139                         * @param object $user, WP_User object
     140                         * @param array $result, An array containing information about the activated user and/or blog
     141                         */
     142                        echo apply_filters ( 'signup_activation_success', $message, $url, $user, $result );
    123143                }
    124144        }
    125145        ?>